Skip to content

Commit 324ce00

Browse files
Update version numbers etc for v0.7.0
1 parent 4b6186c commit 324ce00

File tree

7 files changed

+27
-10
lines changed

7 files changed

+27
-10
lines changed

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ James Mitchell <[email protected]> James Mitchell <[email protected]
22
Chinmaya Nagpal <[email protected]> Chinmaya Nagpal <[email protected]>
33
Chinmaya Nagpal <[email protected]> chinmaya1011 <[email protected]>
44
Maria Tsalakou <[email protected]> Maria Tsalakou <[email protected]>
5+
Murray Whyte <[email protected]> Murray Whyte <[email protected]>

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

9191
## Building the documentation

docs/source/changelog.rst

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

10+
v0.7.0 (released 15/12/2022)
11+
----------------------------
12+
13+
This release contains a number of improvements and fixes, and adds support for
14+
the library of finite semigroup and monoid presentations in ``libsemigroups``
15+
and the ``Stephen`` class from ``libsemigroups``.
16+
17+
* Add functionality for the presentation helper `replace_word` by @MTWhyte in
18+
https://github.com/libsemigroups/libsemigroups_pybind11/pull/84
19+
* Out neighbours for action digraphs by @james-d-mitchell in
20+
https://github.com/libsemigroups/libsemigroups_pybind11/pull/91
21+
* Add functionality for the `fpsemi-examples` presentations by @MTWhyte in
22+
https://github.com/libsemigroups/libsemigroups_pybind11/pull/85
23+
* Stephen by @james-d-mitchell in
24+
https://github.com/libsemigroups/libsemigroups_pybind11/pull/93
25+
1026
v0.6.0 (released 02/12/2022)
1127
----------------------------
1228

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 + Maria Tsalakou"
29-
version = u"0.6.0"
30-
release = u"0.6.0"
29+
version = u"0.7.0"
30+
release = u"0.7.0"
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.6.0
1+
libsemigroups_pybind11 - Version 0.7.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.6.0
7+
.. |libsemigroups-pybind11-version| replace:: 0.7.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
minimum_libsemigroups_version,
3030
)
3131

32-
__version__ = "0.6.0"
32+
__version__ = "0.7.0"
3333

3434

3535
def compare_version_numbers(supplied, required):

0 commit comments

Comments
 (0)