Skip to content
Closed
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
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ abstract: >-
A Python package that wraps the functionality of the C++
library libsemigroups.
license: GPL-3.0+
version: 1.3.0
date-released: "2026-01-18"
version: 1.4.0
date-released: "2026-02-25"
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,10 @@ uv pip install .
To build `libsemigroups_pybind11` from a release archive:

```console
curl -L -O https://github.com/libsemigroups/libsemigroups_pybind11/releases/latest/download/libsemigroups_pybind11-1.3.0.tar.gz
tar -xf libsemigroups_pybind11-1.3.0.tar.gz
rm -f libsemigroups_pybind11-1.3.0.tar.gz
cd libsemigroups_pybind11-1.3.0
curl -L -O https://github.com/libsemigroups/libsemigroups_pybind11/releases/latest/download/libsemigroups_pybind11-1.4.0.tar.gz
tar -xf libsemigroups_pybind11-1.4.0.tar.gz
rm -f libsemigroups_pybind11-1.4.0.tar.gz
cd libsemigroups_pybind11-1.4.0
pip install .
```

Expand Down
2 changes: 1 addition & 1 deletion build_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ def minimum_libsemigroups_version():
"""Returns the minimum required version of libsemigroups required to build
libsemigroups_pybind11.
"""
return "3.4.0"
return "3.5.1"
12 changes: 11 additions & 1 deletion docs/source/changelog-v1.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
..
Copyright (c) 2025, J. D. Mitchell
Copyright (c) 2025-2026, J. D. Mitchell

Distributed under the terms of the GPL license version 3.

Expand All @@ -8,6 +8,16 @@
Changelog - version 1
=====================

v1.4.0 (released 25/02/2026)
----------------------------

This is a minor release including some improvements and new features:

* Update to libsemigroups v3.5.0 and add the new features it contains.
* transf: future proof ``__getitem__`` by @james-d-mitchell in https://github.com/libsemigroups/libsemigroups_pybind11/pull/382
* todd-coxeter: update for changes in libsemigroups by @james-d-mitchell in https://github.com/libsemigroups/libsemigroups_pybind11/pull/388


v1.3.0 (released 18/01/2026)
----------------------------

Expand Down
8 changes: 4 additions & 4 deletions docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@ To build ``libsemigroups_pybind11`` from a release archive:

::

$ curl -L -O https://github.com/libsemigroups/libsemigroups_pybind11/releases/latest/download/libsemigroups_pybind11-1.3.0.tar.gz
$ tar -xf libsemigroups_pybind11-1.3.0.tar.gz
$ rm -f libsemigroups_pybind11-1.3.0.tar.gz
$ cd libsemigroups_pybind11-1.3.0
$ curl -L -O https://github.com/libsemigroups/libsemigroups_pybind11/releases/latest/download/libsemigroups_pybind11-1.4.0.tar.gz
$ tar -xf libsemigroups_pybind11-1.4.0.tar.gz
$ rm -f libsemigroups_pybind11-1.4.0.tar.gz
$ cd libsemigroups_pybind11-1.4.0
$ pip install .

Building the documentation
Expand Down
2 changes: 1 addition & 1 deletion src/transf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ fewer points requiring less space per point.
m.def("transf_inverse",
py::overload_cast<Perm_ const&>(&inverse<N, Scalar>));
} // bind_perm
} // namespace
} // namespace

void init_transf(py::module& m) {
// Transformations
Expand Down