Skip to content

Commit f8d03c0

Browse files
committed
Bump version to 0.7.1
1 parent 4ff9ba6 commit f8d03c0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

doc/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@
5252
# built documents.
5353
#
5454
# The short X.Y version.
55-
version = '0.7.0'
55+
version = '0.7.1'
5656
# The full version, including alpha/beta/rc tags.
57-
release = '0.7.0'
57+
release = '0.7.1'
5858

5959
# The language for content autogenerated by Sphinx. Refer to documentation
6060
# for a list of supported languages.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "python-flint"
33
description = "Bindings for FLINT"
4-
version = "0.7.0"
4+
version = "0.7.1"
55
# This needs to be in sync with README, cibuildwheel and CI config.
66
requires-python = ">= 3.11"
77
authors = [

src/flint/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@
4848
Ordering,
4949
)
5050

51-
__version__ = '0.7.0'
51+
__version__ = '0.7.1'

src/flint/test/test_all.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def raises(f, exception):
3131

3232
def test_pyflint():
3333

34-
assert flint.__version__ == "0.7.0"
34+
assert flint.__version__ == "0.7.1"
3535

3636
ctx = flint.ctx
3737
assert str(ctx) == repr(ctx) == _default_ctx_string

0 commit comments

Comments
 (0)