From 82461da743145edd4b2a5ca46058a738f412eafb Mon Sep 17 00:00:00 2001 From: vasco Date: Tue, 28 May 2024 23:28:52 +0200 Subject: [PATCH] release --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- symmetria/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca8b2ea..66322ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,9 @@ The version is represented by three digits: a.b.c. ## Unreleased + +## \[0.0.4\] - 2024-05-28 + FEATURE: - `symmetria.Permutation`: add `is_regular` method @@ -33,6 +36,7 @@ FEATURE: - `symmetria.Cycle`: add `__pow__` method - `symmetria.CyclePermutation`: add `__pow__` method + ## \[0.0.3\] - 2024-05-25 FEATURE: diff --git a/pyproject.toml b/pyproject.toml index f83df11..caaa391 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "symmetria" -version = "0.0.3" +version = "0.0.4" 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 3f72a5a..24bc8f4 100644 --- a/symmetria/__init__.py +++ b/symmetria/__init__.py @@ -4,7 +4,7 @@ from symmetria.elements.permutation import Permutation from symmetria.elements.cycle_decomposition import CycleDecomposition -__version__ = "0.0.3" +__version__ = "0.0.4" __all__ = ["__version__", "Permutation", "Cycle", "CycleDecomposition"]