Skip to content

Commit d1e48fb

Browse files
Update version numbers etc for 0.2.2
1 parent c9d1677 commit d1e48fb

File tree

6 files changed

+16
-10
lines changed

6 files changed

+16
-10
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.2.1
1+
# libsemigroups_pybind11 - Version 0.2.2
22

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

@@ -80,10 +80,10 @@ Assuming that you have `libsemigroups` installed you can install
8080

8181
To build `libsemigroups_pybind11` from a release archive:
8282

83-
curl -L -O https://github.com/libsemigroups/libsemigroups_pybind11/releases/latest/download/libsemigroups_pybind11-0.2.1.tar.gz
84-
tar -xf libsemigroups_pybind11-0.2.1.tar.gz
85-
rm -f libsemigroups_pybind11-0.2.1.tar.gz
86-
cd libsemigroups_pybind11-0.2.1
83+
curl -L -O https://github.com/libsemigroups/libsemigroups_pybind11/releases/latest/download/libsemigroups_pybind11-0.2.2.tar.gz
84+
tar -xf libsemigroups_pybind11-0.2.2.tar.gz
85+
rm -f libsemigroups_pybind11-0.2.2.tar.gz
86+
cd libsemigroups_pybind11-0.2.2
8787
pip install .
8888

8989
## Building the documentation

docs/source/changelog.rst

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

10+
v0.2.2 (released 16/09/2022)
11+
----------------------------
12+
13+
A very minor release to futureproof some tests against new versions of
14+
``libsemigroups``.
15+
1016
v0.2.1 (released 12/09/2022)
1117
----------------------------
1218

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
project = u"libsemigroups_pybind11"
2727
copyright = u"2021-2022, J. D. Mitchell + Maria Tsalakou"
2828
author = u"J. D. Mitchell"
29-
version = u"0.2.1"
30-
release = u"0.2.1"
29+
version = u"0.2.2"
30+
release = u"0.2.2"
3131
language = "python"
3232
exclude_patterns = ["_build"]
3333
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.2.1
1+
libsemigroups_pybind11 - Version 0.2.2
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.2.1
7+
.. |libsemigroups-pybind11-version| replace:: 0.2.2
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
minimum_libsemigroups_version,
3030
)
3131

32-
__version__ = "0.2.1"
32+
__version__ = "0.2.2"
3333

3434

3535
def compare_version_numbers(supplied, required):

0 commit comments

Comments
 (0)