Skip to content

Commit c9ae6d9

Browse files
authored
Merge pull request #8 from scientificcomputing/finsberg/version-1.0
Set version to 1.0 and add Henrik as author
2 parents 76c4701 + 73c5836 commit c9ae6d9

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed

.github/workflows/test_package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
8787
- name: Run tests
8888
run: |
89-
coverage run --rcfile=.coveragerc -m pytest -xvs ./tests/
89+
pytest -xvs ./tests/
9090
9191
- name: Run tests in parallel
9292
run: |

pyproject.toml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@ 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"
8-
authors = [{ name = "Jørgen S. Dokken", email = "dokken@simula.no" }]
8+
authors = [
9+
{ name = "Jørgen S. Dokken", email = "dokken@simula.no" },
10+
{ name = "Henrik N.T. Finsberg", email = "henriknf@simula.no" }
11+
]
912
license = { file = "LICENSE" }
1013
readme = "README.md"
1114
dependencies = ["fenics-dolfinx>=0.10.0", "packaging"]
@@ -85,3 +88,20 @@ section-order = [
8588

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

0 commit comments

Comments
 (0)