fix config

This commit is contained in:
François Boulogne 2025-06-25 11:03:03 +02:00
parent a0a5ced679
commit 5a0f33f247
3 changed files with 9 additions and 6 deletions

View file

@ -1,4 +1,7 @@
Optifik version 0.1.0 Optifik
Current stable version 0.1.1
# Installation # Installation

View file

@ -1 +1 @@
__version__ = '0.1.0' __version__ = '0.1.1'

View file

@ -1,6 +1,6 @@
[project] [project]
name = "optifik" name = "optifik"
version = "0.1.0" version = "0.1.1"
description = "Compute film thickness from interferometry" description = "Compute film thickness from interferometry"
authors = [ authors = [
{ name = "François Boulogne", email = "francois.boulogne@cnrs.fr" }, { name = "François Boulogne", email = "francois.boulogne@cnrs.fr" },
@ -30,13 +30,13 @@ push = false
[bumpver.file_patterns] [bumpver.file_patterns]
"pyproject.toml" = [ "pyproject.toml" = [
'current_version = "{version}"', 'current_version = "{version}"',
'version = "{version}"',
] ]
"optifik/__init__.py" = [ "optifik/__init__.py" = [
'version="{pep440_version}",', '^__version__ = "{version}"$,',
] ]
"README.md" = [ "README.md" = [
'{version}', '^Current stable version {version}',
'{pep440_version}',
] ]