From 634915fba2d83dc6e7f65be485d53146adacbb77 Mon Sep 17 00:00:00 2001 From: vasco Date: Mon, 15 Jul 2024 21:51:57 +0200 Subject: [PATCH] bump version --- CHANGELOG.md | 2 ++ pyproject.toml | 2 +- symmetria/__init__.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) 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",