Skip to content

Commit d6ce788

Browse files
committed
Merge branch 'release/24.10.12'
2 parents 4b8bab3 + 43a3a31 commit d6ce788

File tree

7 files changed

+19
-10
lines changed

7 files changed

+19
-10
lines changed

HISTORY.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ History
2424
.. Fixed for any bug fixes.
2525
.. Security in case of vulnerabilities.
2626
27-
24.10.11 (2024-10-16)
27+
24.10.12 (2024-10-17)
2828
~~~~~~~~~~~~~~~~~~~~
2929

3030
Changed
@@ -33,7 +33,7 @@ Changed
3333
- Now using Poetry for package management and installation.
3434
- Refactored GitHub Actions workflows.
3535
- Updated ReadTheDocs configuration and build process.
36-
- (Versions 24.10.0 - 24.10.10 were fix attempts.)
36+
- (Versions 24.10.0 - 24.10.11 were fix attempts.)
3737

3838
23.4.2 (2023-04-20)
3939
~~~~~~~~~~~~~~~~~~~

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Python command line app for managing groups of secrets (passwords, API keys, etc
1717
other project variables. Reduces security risks from things like weak default passwords,
1818
secrets stored in files in the source code repository directory.
1919

20-
Version: 24.10.11
20+
Version: 24.10.12
2121

2222
* Free software: `Apache 2.0 License <https://www.apache.org/licenses/LICENSE-2.0>`_
2323
* Documentation: https://python_secrets.readthedocs.org.
@@ -1212,7 +1212,7 @@ Decrypted, it looks like this:
12121212
myapp_app_password=brunt.outclass.alike.turbine
12131213
12141214
--
1215-
Sent using psec version 24.10.11
1215+
Sent using psec version 24.10.12
12161216
https://pypi.org/project/python-secrets/
12171217
https://github.com/davedittrich/python_secrets
12181218

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
24.10.11
1+
24.10.12

poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

psec/__init__.py

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

88
__author__ = 'Dave Dittrich'
99
__email__ = '[email protected]'
10-
__release__ = '24.10.11'
10+
__release__ = '24.10.12'
1111

1212
try:
1313
from psec._version import (

pyproject.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,15 @@ style = "pep440"
1111
latest-tag = true
1212
metadata = true
1313
pattern = "((?P<epoch>\\d+)!)?(?P<base>\\d+(\\.\\d+)*)([-._]?((?P<stage>[a-zA-Z]+)[-._]?(?P<revision>\\d+)?))?"
14+
format-jinja = """
15+
{%- if distance == 0 -%}
16+
{{ serialize_pep440(base, stage, revision) }}
17+
{%- elif revision is not none -%}
18+
{{ serialize_pep440(base, stage, revision + 1, dev=distance, metadata=[commit]) }}
19+
{%- else -%}
20+
{{ serialize_pep440(bump_version(base), stage, revision, dev=distance, metadata=[commit]) }}
21+
{%- endif -%}
22+
"""
1423

1524
[tool.poetry-dynamic-versioning.files."psec/_version.py"]
1625
persistent-substitution = true

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 24.10.11
2+
current_version = 24.10.12
33
commit = False
44
tag = False
55

0 commit comments

Comments
 (0)