File tree Expand file tree Collapse file tree 4 files changed +25
-13
lines changed
Expand file tree Collapse file tree 4 files changed +25
-13
lines changed Original file line number Diff line number Diff line change @@ -41,5 +41,5 @@ abstract: >-
4141 A Python package that wraps the functionality of the C++
4242 library libsemigroups.
4343license : GPL-3.0+
44- version : 1.4.1
45- date-released : " 2026-03-17 "
44+ version : 1.4.2
45+ date-released : " 2026-03-20 "
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ presented, semigroups and monoids. The main algorithms implemented in
5757[ Efficient Testing of Equivalence of Words in a Free Idempotent Semigroup ] : https://link.springer.com/chapter/10.1007/978-3-642-11266-9_55
5858[ Applications of automata theory to presentations of monoids and inverse monoids ] : https://digitalcommons.unl.edu/dissertations/AAI8803771/
5959[ Todd-Coxeter algorithm ] : https://en.wikipedia.org/wiki/Todd%E2%80%93Coxeter_algorithm
60- [ The Todd-Coxeter algorithm for semigroups and monoids ] : https://doi.org/10.1007/s00233-024-10431 -z
60+ [ The Todd-Coxeter algorithm for semigroups and monoids ] : https://doi.org/10.1007/s00233-024-1.4.2 -z
6161[ Schreier-Sims algorithm ] : https://en.wikipedia.org/wiki/Schreier%E2%80%93Sims_algorithm
6262[ Expository Slides ] : https://www.irif.fr/~jep/PDF/Exposes/StAndrews.pdf
6363[ Semigroupe 2.01 ] : https://www.irif.fr/~jep/Logiciels/Semigroupe2.0/semigroupe2.html
@@ -150,10 +150,10 @@ uv pip install .
150150To build ` libsemigroups_pybind11 ` from a release archive:
151151
152152``` console
153- curl -L -O https://github.com/libsemigroups/libsemigroups_pybind11/releases/latest/download/libsemigroups_pybind11-1.4.1 .tar.gz
154- tar -xf libsemigroups_pybind11-1.4.1 .tar.gz
155- rm -f libsemigroups_pybind11-1.4.1 .tar.gz
156- cd libsemigroups_pybind11-1.4.1
153+ curl -L -O https://github.com/libsemigroups/libsemigroups_pybind11/releases/latest/download/libsemigroups_pybind11-1.4.2 .tar.gz
154+ tar -xf libsemigroups_pybind11-1.4.2 .tar.gz
155+ rm -f libsemigroups_pybind11-1.4.2 .tar.gz
156+ cd libsemigroups_pybind11-1.4.2
157157pip install .
158158```
159159
Original file line number Diff line number Diff line change 88Changelog - version 1
99=====================
1010
11+ v1.4.2 (released 20/03/2026)
12+ ----------------------------
13+
14+ This a minor release which contains a number of minor improvements to the
15+ documentation, and some fixes to the return types of the ``ToddCoxeter ``
16+ methods related to lookahead and lookbehind.
17+
18+ * Todd coxeter rtypes by @james-d-mitchell in
19+ https://github.com/libsemigroups/libsemigroups_pybind11/pull/406
20+ * Doc fixes by @james-d-mitchell in
21+ https://github.com/libsemigroups/libsemigroups_pybind11/pull/407
22+
1123v1.4.1 (released 17/03/2026)
1224----------------------------
1325
@@ -20,15 +32,15 @@ v1.4.0 (released 25/02/2026)
2032
2133This is a minor release including some improvements and new features:
2234
23- * Update to libsemigroups v3.5.0 and add the new features it contains.
35+ * Update to libsemigroups _ v3.5.0 and add the new features it contains.
2436* transf: future proof ``__getitem__ `` by @james-d-mitchell in https://github.com/libsemigroups/libsemigroups_pybind11/pull/382
2537* todd-coxeter: update for changes in libsemigroups by @james-d-mitchell in https://github.com/libsemigroups/libsemigroups_pybind11/pull/388
2638
2739
2840v1.3.0 (released 18/01/2026)
2941----------------------------
3042
31- * Update to libsemigroups v3.4.0 and add features introduced there by
43+ * Update to libsemigroups _ v3.4.0 and add features introduced there by
3244 @james-d-mitchell in
3345 https://github.com/libsemigroups/libsemigroups_pybind11/pull/380
3446
Original file line number Diff line number Diff line change @@ -101,10 +101,10 @@ To build ``libsemigroups_pybind11`` from a release archive:
101101
102102 ::
103103
104- $ curl -L -O https://github.com/libsemigroups/libsemigroups_pybind11/releases/latest/download/libsemigroups_pybind11-1.4.1 .tar.gz
105- $ tar -xf libsemigroups_pybind11-1.4.1 .tar.gz
106- $ rm -f libsemigroups_pybind11-1.4.1 .tar.gz
107- $ cd libsemigroups_pybind11-1.4.1
104+ $ curl -L -O https://github.com/libsemigroups/libsemigroups_pybind11/releases/latest/download/libsemigroups_pybind11-1.4.2 .tar.gz
105+ $ tar -xf libsemigroups_pybind11-1.4.2 .tar.gz
106+ $ rm -f libsemigroups_pybind11-1.4.2 .tar.gz
107+ $ cd libsemigroups_pybind11-1.4.2
108108 $ pip install .
109109
110110Building the documentation
You can’t perform that action at this time.
0 commit comments