Skip to content

Commit 7d5eeba

Browse files
Update version numbers etc for 0.6.0
1 parent 282b3d7 commit 7d5eeba

File tree

6 files changed

+28
-11
lines changed

6 files changed

+28
-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.5.0
1+
# libsemigroups_pybind11 - Version 0.6.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.5.0.tar.gz
86-
tar -xf libsemigroups_pybind11-0.5.0.tar.gz
87-
rm -f libsemigroups_pybind11-0.5.0.tar.gz
88-
cd libsemigroups_pybind11-0.5.0
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
8989
pip install .
9090

9191
## Building the documentation

docs/source/changelog.rst

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

10+
v0.6.0 (released 02/12/2022)
11+
----------------------------
12+
13+
This release contains a number of improvements and fixes, and adds support for
14+
the ``Konieczny`` class from ``libsemigroups``.
15+
16+
* Add missing header include in cong.cpp by @james-d-mitchell in
17+
https://github.com/libsemigroups/libsemigroups_pybind11/pull/77
18+
* Remove trivial rules by @james-d-mitchell in
19+
https://github.com/libsemigroups/libsemigroups_pybind11/pull/79
20+
* Fix string encoding in ``KnuthBendix`` by @james-d-mitchell in
21+
https://github.com/libsemigroups/libsemigroups_pybind11/pull/82
22+
* Add support for ``Konieczny`` from ``libsemigroups`` by @james-d-mitchell in
23+
https://github.com/libsemigroups/libsemigroups_pybind11/pull/80
24+
* Better ``__repr__`` for ``KnuthBendix`` by @james-d-mitchell in
25+
https://github.com/libsemigroups/libsemigroups_pybind11/pull/86
26+
1027
v0.5.0 (released 16/11/2022)
1128
----------------------------
1229

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.5.0"
30-
release = u"0.5.0"
29+
version = u"0.6.0"
30+
release = u"0.6.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.5.0
1+
libsemigroups_pybind11 - Version 0.6.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.5.0
7+
.. |libsemigroups-pybind11-version| replace:: 0.6.0
88

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
minimum_libsemigroups_version,
3030
)
3131

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

3434

3535
def compare_version_numbers(supplied, required):
@@ -146,7 +146,7 @@ def __str__(self):
146146
os.environ["LD_LIBRARY_PATH"] += PREFIX + LIBRARY_PATH_NO_L
147147
else:
148148
os.environ["LD_LIBRARY_PATH"] = LIBRARY_PATH_NO_L
149-
print(os.environ["LD_LIBRARY_PATH"])
149+
print(os.environ["LD_LIBRARY_PATH"])
150150

151151

152152
include_path = [

0 commit comments

Comments
 (0)