Marco Ricci commited on 2025-06-24 21:59:36
Zeige 11 geänderte Dateien mit 31 Einfügungen und 31 Löschungen.
... | ... |
@@ -1,8 +0,0 @@ |
1 |
-### Fixed |
|
2 |
- |
|
3 |
- - Add icons and more internal links (reference documentation, wishlist |
|
4 |
- entries) to the changelog. |
|
5 |
- |
|
6 |
- - Change the upstream URLs for the issue/wishlist tracking and the source |
|
7 |
- code away from the GitHub mirror, and to the private hosting sites. |
|
8 |
- |
... | ... |
@@ -51,6 +51,18 @@ specifically marked as such.) |
51 | 51 |
|
52 | 52 |
<!-- scriv changelog start --> |
53 | 53 |
|
54 |
+## 0.5.1 (2025-06-24) {#v0.5.1} |
|
55 |
+ |
|
56 |
+### Fixed {#fixed-in-v0.5.1} |
|
57 |
+ |
|
58 |
+ - Add icons and more internal links (reference documentation, wishlist |
|
59 |
+ entries) to the changelog. |
|
60 |
+ |
|
61 |
+ - Change the upstream URLs for the issue/wishlist tracking and the source |
|
62 |
+ code away from the GitHub mirror, and to the private hosting sites. |
|
63 |
+ |
|
64 |
+ - Declare support for Python 3.14 (as of beta 3). |
|
65 |
+ |
|
54 | 66 |
## 0.5 (2025-06-14) {#v0.5} |
55 | 67 |
|
56 | 68 |
### Removed {#removed-in-v0.5} |
... | ... |
@@ -5,10 +5,10 @@ |
5 | 5 |
# |
6 | 6 |
msgid "" |
7 | 7 |
msgstr "" |
8 |
-"Project-Id-Version: derivepassphrase 0.5\n" |
|
8 |
+"Project-Id-Version: derivepassphrase 0.5.1\n" |
|
9 | 9 |
"Report-Msgid-Bugs-To: software@the13thletter.info\n" |
10 |
-"POT-Creation-Date: 2025-06-14 21:36+0200\n" |
|
11 |
-"PO-Revision-Date: 2025-06-14 21:36+0200\n" |
|
10 |
+"POT-Creation-Date: 2025-06-24 21:24+0200\n" |
|
11 |
+"PO-Revision-Date: 2025-06-24 21:24+0200\n" |
|
12 | 12 |
"Last-Translator: AUTHOR <someone@example.com>\n" |
13 | 13 |
"Language: en\n" |
14 | 14 |
"Language-Team: English\n" |
... | ... |
@@ -4,9 +4,9 @@ |
4 | 4 |
# |
5 | 5 |
msgid "" |
6 | 6 |
msgstr "" |
7 |
-"Project-Id-Version: derivepassphrase 0.5\n" |
|
7 |
+"Project-Id-Version: derivepassphrase 0.5.1\n" |
|
8 | 8 |
"Report-Msgid-Bugs-To: software@the13thletter.info\n" |
9 |
-"PO-Revision-Date: 2025-06-14 21:36+0200\n" |
|
9 |
+"PO-Revision-Date: 2025-06-24 21:24+0200\n" |
|
10 | 10 |
"Last-Translator: Marco Ricci <software@the13thletter.info>\n" |
11 | 11 |
"Language: en_US@DEBUG\n" |
12 | 12 |
"Language-Team: English\n" |
... | ... |
@@ -6,7 +6,7 @@ build-backend = "hatchling.build" |
6 | 6 |
name = "derivepassphrase" |
7 | 7 |
description = "An almost faithful Python reimplementation of James Coglan's vault." |
8 | 8 |
readme = "README.md" |
9 |
-version = "0.5" |
|
9 |
+version = "0.5.1" |
|
10 | 10 |
requires-python = ">= 3.9" |
11 | 11 |
license = { text = "zlib/libpng" } |
12 | 12 |
keywords = [] |
... | ... |
@@ -98,7 +98,7 @@ Issues = "https://the13thletter.info/derivepassphrase/latest/wishlist/" |
98 | 98 |
Source = "https://git.schokokeks.org/derivepassphrase.git" |
99 | 99 |
|
100 | 100 |
[tool.bumpversion] |
101 |
-current_version = "0.5" |
|
101 |
+current_version = "0.5.1" |
|
102 | 102 |
# As of bump-my-version 0.32.0, version components are strictly |
103 | 103 |
# hierarchical in the order of occurrence, and there is no support for |
104 | 104 |
# pre-release markers. The documentation suggests a fake "dev/rc/final" |
... | ... |
@@ -190,14 +190,14 @@ regex = true |
190 | 190 |
|
191 | 191 |
[[tool.bumpversion.files]] |
192 | 192 |
filename = 'pyproject.toml' |
193 |
-search = "^ *version *= *'{current_version}'" |
|
194 |
-replace = "version = '{new_version}'" |
|
193 |
+search = '^ *version *= *"{current_version}"' |
|
194 |
+replace = 'version = "{new_version}"' |
|
195 | 195 |
regex = true |
196 | 196 |
|
197 | 197 |
[[tool.bumpversion.files]] |
198 | 198 |
filename = 'pyproject.toml' |
199 |
-search = "^ *current_version *= *'{current_version}'" |
|
200 |
-replace = "current_version = '{new_version}'" |
|
199 |
+search = '^ *current_version *= *"{current_version}"' |
|
200 |
+replace = 'current_version = "{new_version}"' |
|
201 | 201 |
regex = true |
202 | 202 |
|
203 | 203 |
[[tool.bumpversion.files]] |