Skip to content

Commit 5fa12c7

Browse files
committed
Set version to 1.0
1 parent 76c4701 commit 5fa12c7

1 file changed

Lines changed: 18 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools>=61.0.0", "wheel"]
33

44
[project]
55
name = "io4dolfinx"
6-
version = "0.11.0.dev0"
6+
version = "1.0.0"
77
description = "Checkpointing functionality for DOLFINx meshes/functions with ADIOS2"
88
authors = [{ name = "Jørgen S. Dokken", email = "dokken@simula.no" }]
99
license = { file = "LICENSE" }
@@ -85,3 +85,20 @@ section-order = [
8585

8686
[tool.ruff.lint.isort.sections]
8787
"mpi" = ["mpi4py", "petsc4py"]
88+
89+
90+
[tool.bumpversion]
91+
allow_dirty = false
92+
commit = true
93+
message = "Bump version: {current_version} → {new_version}"
94+
tag = true
95+
sign_tags = false
96+
tag_name = "v{new_version}"
97+
tag_message = "Bump version: {current_version} → {new_version}"
98+
current_version = "1.0.0"
99+
100+
101+
[[tool.bumpversion.files]]
102+
filename = "pyproject.toml"
103+
search = 'version = "{current_version}"'
104+
replace = 'version = "{new_version}"'

0 commit comments

Comments
 (0)