Skip to content

Commit 0a13be9

Browse files
Update version etc for v0.1.8
1 parent 7fa2e78 commit 0a13be9

File tree

7 files changed

+18
-11
lines changed

7 files changed

+18
-11
lines changed

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Build wheels, sdist, and upload to PyPI
22

3-
on: [release]
3+
on: [published]
44

55
env:
66
libsemigroups_version: '2.0.3'

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.1.7
1+
# libsemigroups_pybind11 - Version 0.1.8
22

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

@@ -75,10 +75,10 @@ Assuming that you have `libsemigroups` installed you can install
7575

7676
To build `libsemigroups_pybind11` from a release archive:
7777

78-
curl -L -O https://github.com/libsemigroups/libsemigroups_pybind11/releases/latest/download/libsemigroups_pybind11-0.1.7.tar.gz
79-
tar -xf libsemigroups_pybind11-0.1.7.tar.gz
80-
rm -f libsemigroups_pybind11-0.1.7.tar.gz
81-
cd libsemigroups_pybind11-0.1.7
78+
curl -L -O https://github.com/libsemigroups/libsemigroups_pybind11/releases/latest/download/libsemigroups_pybind11-0.1.8.tar.gz
79+
tar -xf libsemigroups_pybind11-0.1.8.tar.gz
80+
rm -f libsemigroups_pybind11-0.1.8.tar.gz
81+
cd libsemigroups_pybind11-0.1.8
8282
pip install .
8383

8484
## Building the documentation

docs/source/changelog.rst

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

10+
v0.1.8 (released 27/01/2022)
11+
----------------------------
12+
13+
This is a very minor release which contains no functional changes, or bugfixes,
14+
but exists to fix an issue related to the wheel created for pypi on mac os x
15+
arm machines.
16+
1017
v0.1.7 (released 27/01/2022)
1118
----------------------------
1219

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, J. D. Mitchell + Maria Tsalakou"
2929
author = u"J. D. Mitchell"
30-
version = u"0.1.7"
31-
release = u"0.1.7"
30+
version = u"0.1.8"
31+
release = u"0.1.8"
3232
language = None
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.1.7
1+
libsemigroups_pybind11 - Version 0.1.8
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.1.7
7+
.. |libsemigroups-pybind11-version| replace:: 0.1.8
88

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
libsemigroups_version,
2929
)
3030

31-
__version__ = "0.1.7"
31+
__version__ = "0.1.8"
3232

3333

3434
def minimum_libsemigroups_version():

0 commit comments

Comments
 (0)