From 9eaa95602ca893549e9eb2209018fa21ccd1c5a2 Mon Sep 17 00:00:00 2001 From: vasco Date: Wed, 12 Jun 2024 23:19:27 +0200 Subject: [PATCH] update version --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- symmetria/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e021ac8..2c80788 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,9 +22,15 @@ The version is represented by three digits: a.b.c. ## Unreleased + +## \[0.2.0\] - 2024-06-12 + FEATURE: - `cli`: add (minimal) command line interface +DOCUMENTATION: +- add documentation for command line interface + ## \[0.1.1\] - 2024-06-10 FEATURE: @@ -32,6 +38,7 @@ FEATURE: - `symmetria.CyclePermutation`: add `describe` method - `symmetria.Cycle`: add `describe` method + ## \[0.1.0\] - 2024-06-05 DEPRECATED: diff --git a/pyproject.toml b/pyproject.toml index 0be8fe8..886e28b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "symmetria" -version = "0.1.1" +version = "0.2.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 490c545..530e0c4 100644 --- a/symmetria/__init__.py +++ b/symmetria/__init__.py @@ -3,5 +3,5 @@ from symmetria.elements.permutation import Permutation from symmetria.elements.cycle_decomposition import CycleDecomposition -__version__ = "0.1.1" +__version__ = "0.2.0" __all__ = ["__version__", "generate", "Permutation", "Cycle", "CycleDecomposition"]