Skip to content

Commit 2705447

Browse files
Update version numbers etc for 0.3.0
1 parent 4bb54fa commit 2705447

File tree

6 files changed

+20
-13
lines changed

6 files changed

+20
-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.2.2
1+
# libsemigroups_pybind11 - Version 0.3.0
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.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
83+
curl -L -O https://github.com/libsemigroups/libsemigroups_pybind11/releases/latest/download/libsemigroups_pybind11-0.3.0.tar.gz
84+
tar -xf libsemigroups_pybind11-0.3.0.tar.gz
85+
rm -f libsemigroups_pybind11-0.3.0.tar.gz
86+
cd libsemigroups_pybind11-0.3.0
8787
pip install .
8888

8989
## Building the documentation

docs/source/changelog.rst

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

10+
v0.3.0 (released 29/09/2022)
11+
----------------------------
12+
13+
This is a minor release adding support for the ``libsemigroups`` class
14+
``Sims1`` for computing low index congruences, and some further minor changes
15+
to the ``Presentation`` class.
16+
1017
v0.2.2 (released 16/09/2022)
1118
----------------------------
1219

@@ -22,7 +29,7 @@ v0.2.0 (released 10/09/2022)
2229
----------------------------
2330

2431
This is a minor release adding support for the ``libsemigroups`` class template
25-
``Presentation`` by @MTWhyte and @james-d-mitchell in:
32+
``Presentation`` by @MTWhyte and @james-d-mitchell in:
2633

2734
https://github.com/libsemigroups/libsemigroups_pybind11/pull/49
2835

@@ -52,7 +59,7 @@ v0.1.5 (released 02/12/2021)
5259
----------------------------
5360

5461
This is a minor release fixing (hopefully) the required version of
55-
``pkgconfig``.
62+
``pkgconfig``.
5663

5764
v0.1.4 (released 12/11/2021)
5865
----------------------------
@@ -80,7 +87,7 @@ v0.1.0 (released 08/10/2021)
8087
----------------------------
8188

8289
Some minor issues were resolved and the function ``follow_path`` was added for
83-
``ActionDigraphs``.
90+
``ActionDigraphs``.
8491

8592
v0.0.0 (released 24/09/2021)
8693
----------------------------

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.2"
30-
release = u"0.2.2"
29+
version = u"0.3.0"
30+
release = u"0.3.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.2.2
1+
libsemigroups_pybind11 - Version 0.3.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.2.2
7+
.. |libsemigroups-pybind11-version| replace:: 0.3.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.2.2"
32+
__version__ = "0.3.0"
3333

3434

3535
def compare_version_numbers(supplied, required):

0 commit comments

Comments
 (0)