Skip to content

Commit

Permalink
Release 0.11.0 (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
insolor authored Oct 3, 2023
1 parent 816cd1d commit 9451f9b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
CIBW_ARCHS_LINUX: x86_64 i686
CIBW_ARCHS_MACOS: x86_64 universal2
CIBW_ARCHS_WINDOWS: AMD64 x86
CIBW_BUILD: "cp38-* cp39-* cp310-* cp311-*"
CIBW_BUILD: "cp38-* cp39-* cp310-* cp311-* cp312-*"

- uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12-dev"] # TODO: replace 3.12-dev with 3.12
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false

Expand Down
11 changes: 9 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
# Changes

## 0.11.0 (2023-10-03)

- Build with trace options only for tests
- Build wheels for Python 3.12, enable tests on Python 3.12
- Update code style a bit, remove redundant `coding: utf-8` comments and legacy things such as
`from __future__ import absolute_import, unicode_literals, division` needed for compatibility with Python 2

## 0.10.0 (2023-09-05)

- More flexible char substitutes (by bt2901)
- Support of Python versions older then 3.8 is dropped
- More flexible char substitutes (by @bt2901)
- Support of Python versions older than 3.8 is dropped
- Building binary wheels for pypi.org

## 0.9.0 (2023-05-23)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

setup(
name="DAWG2",
version="0.10.0",
version="0.11.0",
description="Fast and memory efficient DAWG (DAFSA) for Python",
long_description=open("README.md").read() + "\n\n" + open("CHANGES.md").read(),
author="Mikhail Korobov",
Expand Down

0 comments on commit 9451f9b

Please sign in to comment.