Skip to content

Commit

Permalink
Release 0.13.0 (#30)
Browse files Browse the repository at this point in the history
* Upadte CHANGES.md

* Remove bench.ini

* Remove unused not coverd by tests "half-internal" methods

* Update CHANGES.md

* Update CHANGES.md

* Change version in pyproject.toml
  • Loading branch information
insolor authored Jan 25, 2024
1 parent 6ce8c85 commit d0914e7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 19 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changes

## 0.13.0 (2024-01-25)

- Fixed build warnings in dawgdic and DAWG itself
- Package metadata moved from setup.py to pyproject.toml
- Removed three unused "half-internal" methods in class DAWG

## 0.12.1 (2023-12-02)

- Fixed source distribution
Expand Down
9 changes: 0 additions & 9 deletions bench.ini

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "DAWG2"
version = "0.12.1"
version = "0.13.0"
requires-python = ">= 3.8"
description = "Fast and memory efficient DAWG (DAFSA) for Python"
readme = "README.md"
Expand Down
9 changes: 0 additions & 9 deletions src/dawg.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -168,15 +168,6 @@ cdef class DAWG:
self.frombytes(state)

# half-internal methods
def _size(self):
return self.dct.size()

def _total_size(self):
return self.dct.total_size()

def _file_size(self):
return self.dct.file_size()

cdef bint _has_value(self, BaseType index):
return self.dct.has_value(index)

Expand Down

0 comments on commit d0914e7

Please sign in to comment.