Skip to content

Commit

Permalink
Bump version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
krivenko committed Jul 1, 2024
1 parent f5f51d3 commit 2c95c59
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## [0.7.2] - Unreleased
## [0.8.0] - Unreleased

- Enable support for Python 3.11 and 3.12.
- Added methods ``__copy__()`` and ``__deepcopy__()`` to a few mutable objects:
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
project = 'pycommute'
copyright = '2020-2024, Igor Krivenko'
author = 'Igor Krivenko'
version = '0.7.2'
release = '0.7.2'
version = '0.8.0'
release = '0.8.0'

# -- General configuration ---------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
from packaging.version import Version
from pybind11.setup_helpers import Pybind11Extension, build_ext

__version__ = "0.7.2"
comp_libcommute_versions = ">=0.7.2"
__version__ = "0.8.0"
comp_libcommute_versions = ">=0.8.0"

ext_modules = [
Pybind11Extension("pycommute/expression", ["pycommute/expression.cpp"]),
Expand Down

0 comments on commit 2c95c59

Please sign in to comment.