Skip to content

Commit c3baa5b

Browse files
committed
Bump version to 0.7.0 final
1 parent 3acd691 commit c3baa5b

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,12 @@ on ARM but may be added when CI runners for Linux/Windows are available.
157157
CHANGELOG
158158
=========
159159

160-
Next release (0.7.0)...
160+
Next release (0.8.0)...
161161
-----------------------
162162

163+
0.7.0
164+
-----
165+
163166
Contributors (0.7.0):
164167

165168
- Jake Moss (JM)

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
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.0a5'
55+
version = '0.7.0'
5656
# The full version, including alpha/beta/rc tags.
57-
release = '0.7.0a5'
57+
release = '0.7.0'
5858

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
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.0a5"
4+
version = "0.7.0"
55
# This needs to be in sync with README, cibuildwheel and CI config.
66
requires-python = ">= 3.11"
77
authors = [

src/flint/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@
4848
Ordering,
4949
)
5050

51-
__version__ = '0.7.0a5'
51+
__version__ = '0.7.0'

src/flint/test/test_all.py

Lines changed: 1 addition & 1 deletion
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.0a5"
34+
assert flint.__version__ == "0.7.0"
3535

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

0 commit comments

Comments
 (0)