From 0306d35722d38679a3ef0b77d557ff7662b99dad Mon Sep 17 00:00:00 2001 From: Vasco Schiavo <115561717+VascoSch92@users.noreply.github.com> Date: Mon, 10 Jun 2024 21:48:11 +0200 Subject: [PATCH] [RELEASE] 0.1.1 (#101) --- CHANGELOG.md | 3 +++ pyproject.toml | 2 +- symmetria/__init__.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfebc59..9781cf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,9 @@ The version is represented by three digits: a.b.c. ## Unreleased + +## \[0.1.1\] - 2024-06-10 + FEATURE: - `symmetria.Permutation`: add `describe` method - `symmetria.CyclePermutation`: add `describe` method diff --git a/pyproject.toml b/pyproject.toml index b9443b6..3b99a1b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "symmetria" -version = "0.1.0" +version = "0.1.1" 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 c7b02e4..468abab 100644 --- a/symmetria/__init__.py +++ b/symmetria/__init__.py @@ -5,7 +5,7 @@ from symmetria.elements.permutation import Permutation from symmetria.elements.cycle_decomposition import CycleDecomposition -__version__ = "0.1.0" +__version__ = "0.1.1" __all__ = ["__version__", "generate", "Permutation", "Cycle", "CycleDecomposition"]