Skip to content

Commit 1cfebf3

Browse files
Update version numbers etc for v0.10.0
1 parent da6994a commit 1cfebf3

File tree

6 files changed

+21
-11
lines changed

6 files changed

+21
-11
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# libsemigroups_pybind11 - Version 0.9.2
1+
# libsemigroups_pybind11 - Version 0.10.0
22

33
## python bindings for the C++ library libsemigroups
44

@@ -82,10 +82,10 @@ Assuming that you have `libsemigroups` installed you can install
8282

8383
To build `libsemigroups_pybind11` from a release archive:
8484

85-
curl -L -O https://github.com/libsemigroups/libsemigroups_pybind11/releases/latest/download/libsemigroups_pybind11-0.9.2.tar.gz
86-
tar -xf libsemigroups_pybind11-0.9.2.tar.gz
87-
rm -f libsemigroups_pybind11-0.9.2.tar.gz
88-
cd libsemigroups_pybind11-0.9.2
85+
curl -L -O https://github.com/libsemigroups/libsemigroups_pybind11/releases/latest/download/libsemigroups_pybind11-0.10.0.tar.gz
86+
tar -xf libsemigroups_pybind11-0.10.0.tar.gz
87+
rm -f libsemigroups_pybind11-0.10.0.tar.gz
88+
cd libsemigroups_pybind11-0.10.0
8989
pip install .
9090

9191
## Building the documentation

docs/source/changelog.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@
77
Changelog
88
=========
99

10+
v0.10.0 (released 23/03/2023)
11+
-----------------------------
12+
13+
This is a minor release adding some new functionality from ``libsemigroups``:
14+
15+
* ukkonen: add support for ``Ukkonen`` + helpers by @james-d-mitchell in
16+
https://github.com/libsemigroups/libsemigroups_pybind11/pull/132
17+
* present: add further manip. funcs by @james-d-mitchell in
18+
https://github.com/libsemigroups/libsemigroups_pybind11/pull/136
19+
1020
v0.9.2 (released 22/03/2023)
1121
----------------------------
1222

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
project = u"libsemigroups_pybind11"
2828
copyright = u"2021-2023, J. D. Mitchell + Maria Tsalakou"
2929
author = u"J. D. Mitchell + Maria Tsalakou"
30-
version = u"0.9.2"
31-
release = u"0.9.2"
30+
version = u"0.10.0"
31+
release = u"0.10.0"
3232
language = "python"
3333
exclude_patterns = ["_build"]
3434
pygments_style = "sphinx"

docs/source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
libsemigroups_pybind11 - Version 0.9.2
2-
======================================
1+
libsemigroups_pybind11 - Version 0.10.0
2+
=======================================
33

44
python bindings for the C++ library libsemigroups
55
-------------------------------------------------

docs/source/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
The full license is in the file LICENSE, distributed with this software.
66
7-
.. |libsemigroups-pybind11-version| replace:: 0.9.2
7+
.. |libsemigroups-pybind11-version| replace:: 0.10.0
88

99
Installation
1010
============

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
compare_version_numbers,
3030
)
3131

32-
__version__ = "0.9.2"
32+
__version__ = "0.10.0"
3333

3434
pprint(os.environ)
3535

0 commit comments

Comments
 (0)