Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"},
Expand Down
2 changes: 1 addition & 1 deletion symmetria/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading