diff --git a/CHANGELOG.md b/CHANGELOG.md index da0afcd..fceaf3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,8 @@ The version is represented by three digits: a.b.c. ## Unreleased +## \[0.3.0\] - 2024-07-15 + FEATURE: - `symmetria.Permutation`: add `degree` method - `symmetria.CyclePermutation`: add `degree` method diff --git a/pyproject.toml b/pyproject.toml index 886e28b..bb00bad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "symmetria" -version = "0.2.0" +version = "0.3.0" description = "Symmetria provides an intuitive, thorough, and comprehensive framework for interacting with the symmetric group and its elements." authors = [ {name = "Vasco Schiavo"}, diff --git a/symmetria/__init__.py b/symmetria/__init__.py index d093d26..bd0dd39 100644 --- a/symmetria/__init__.py +++ b/symmetria/__init__.py @@ -4,7 +4,7 @@ from symmetria.generators.algorithm.api import generate from symmetria.elements.cycle_decomposition import CycleDecomposition -__version__ = "0.2.0" +__version__ = "0.3.0" __all__ = [ "__version__", "generate",