Skip to content

Commit 5937a41

Browse files
Update version numbers etc for v0.9.0
1 parent 5f120da commit 5937a41

File tree

6 files changed

+23
-13
lines changed

6 files changed

+23
-13
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.8.0
1+
# libsemigroups_pybind11 - Version 0.9.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.8.0.tar.gz
86-
tar -xf libsemigroups_pybind11-0.8.0.tar.gz
87-
rm -f libsemigroups_pybind11-0.8.0.tar.gz
88-
cd libsemigroups_pybind11-0.8.0
85+
curl -L -O https://github.com/libsemigroups/libsemigroups_pybind11/releases/latest/download/libsemigroups_pybind11-0.9.0.tar.gz
86+
tar -xf libsemigroups_pybind11-0.9.0.tar.gz
87+
rm -f libsemigroups_pybind11-0.9.0.tar.gz
88+
cd libsemigroups_pybind11-0.9.0
8989
pip install .
9090

9191
## Building the documentation

docs/source/changelog.rst

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@
77
Changelog
88
=========
99

10+
v0.9.0 (released 06/03/2023)
11+
----------------------------
12+
13+
This is a minor release including two changes and some minor improvements to
14+
the doc:
15+
16+
* Improve ``ActionDigraph`` colours by @MTWhyte in
17+
https://github.com/libsemigroups/libsemigroups_pybind11/pull/125
18+
* Add support for ``ActionDigraph::cbegin/cend_pstilo`` by @james-d-mitchell in
19+
https://github.com/libsemigroups/libsemigroups_pybind11/pull/127
20+
1021
v0.8.0 (released 28/02/2023)
1122
----------------------------
1223

@@ -23,7 +34,6 @@ This is a minor version that adds all the features from the namespace
2334
``shortest_rule_length``
2435
* ``make_semigroup``
2536

26-
2737
v0.7.3 (released 07/02/2023)
2838
----------------------------
2939

@@ -50,11 +60,11 @@ This release contains a number of improvements and fixes, and adds support for
5060
the library of finite semigroup and monoid presentations in ``libsemigroups``
5161
and the ``Stephen`` class from ``libsemigroups``.
5262

53-
* Add functionality for the presentation helper `replace_word` by @MTWhyte in
63+
* Add functionality for the presentation helper ``replace_word`` by @MTWhyte in
5464
https://github.com/libsemigroups/libsemigroups_pybind11/pull/84
5565
* Out neighbours for action digraphs by @james-d-mitchell in
5666
https://github.com/libsemigroups/libsemigroups_pybind11/pull/91
57-
* Add functionality for the `fpsemi-examples` presentations by @MTWhyte in
67+
* Add functionality for the ``fpsemi-examples`` presentations by @MTWhyte in
5868
https://github.com/libsemigroups/libsemigroups_pybind11/pull/85
5969
* Stephen by @james-d-mitchell in
6070
https://github.com/libsemigroups/libsemigroups_pybind11/pull/93

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.8.0"
31-
release = u"0.8.0"
30+
version = u"0.9.0"
31+
release = u"0.9.0"
3232
language = "python"
3333
exclude_patterns = ["_build"]
3434
pygments_style = "sphinx"

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
libsemigroups_pybind11 - Version 0.8.0
1+
libsemigroups_pybind11 - Version 0.9.0
22
======================================
33

44
python bindings for the C++ library libsemigroups

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.8.0
7+
.. |libsemigroups-pybind11-version| replace:: 0.9.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.8.0"
32+
__version__ = "0.9.0"
3333

3434
pprint(os.environ)
3535

0 commit comments

Comments
 (0)