Skip to content

Commit f2880b9

Browse files
committed
[DOP-22129] Fix mismatched version numbers
1 parent eeb2d10 commit f2880b9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

data_rentgen/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# _raw_version could contain pre-release version, like 0.0.1dev123
55
# value is updated automatically by `poetry version ...` and poetry-bumpversion plugin
6-
_raw_version = "0.0.1"
6+
_raw_version = "0.1.1"
77

88
# version always contain only release number like 0.0.1
99
__version__ = ".".join(_raw_version.split(".")[:3])

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# -- Project information -----------------------------------------------------
2525

2626
project = "Data.Rentgen"
27-
copyright = "2024 MTS PJSC"
27+
copyright = "2024-2025 MTS PJSC"
2828
author = "DataOps.ETL"
2929

3030
# The version info for the project you're documenting, acts as replacement for
@@ -34,7 +34,7 @@
3434
# The short X.Y version.
3535

3636
# this value is updated automatically by `poetry version ...` and poetry-bumpversion plugin
37-
ver = Version.parse("0.0.1")
37+
ver = Version.parse("0.1.1")
3838
version = ver.base_version
3939
# The full version, including alpha/beta/rc tags.
4040
release = ver.public

0 commit comments

Comments
 (0)