Release 0.1.3
Marco Ricci

Marco Ricci commited on 2024-07-28 17:55:12
Zeige 10 geänderte Dateien mit 23 Einfügungen und 9 Löschungen.

... ...
@@ -30,6 +30,25 @@ effectively constitute a new <q>major</q> release.)
30 30
 
31 31
 <!-- towncrier release notes start -->
32 32
 
33
+## 0.1.3 (2024-07-28)
34
+
35
+#### Fixed
36
+
37
+- Do not crash upon selecting a key on the command-line if there already is a
38
+  key stored in the configuration. ([#5])
39
+- Create the configuration directory upon saving, if it does not yet exist.
40
+  ([#6])
41
+- Isolate the tests properly and consistently from the user's configuration, so
42
+  that user configuration problems do not cause unrelated test failures. ([#8])
43
+- Add an alternate MkDocs configuration for building the documentation in
44
+  offline mode.
45
+- Fix typing issues according to `mypy`'s strict mode.
46
+
47
+[#5]: https://github.com/the-13th-letter/derivepassphrase/5
48
+[#6]: https://github.com/the-13th-letter/derivepassphrase/6
49
+[#8]: https://github.com/the-13th-letter/derivepassphrase/8
50
+
51
+
33 52
 ## 0.1.2 (2024-07-22)
34 53
 
35 54
 #### Fixed
... ...
@@ -27,7 +27,7 @@ dependencies = [
27 27
   "click>=8.1",
28 28
   "typing_extensions",
29 29
 ]
30
-version = "0.1.2"
30
+version = "0.1.3"
31 31
 
32 32
 [project.optional-dependencies]
33 33
 dev = ["black", "coverage", "hatch>=1.10", "mkdocs", "mkdocs-material",
... ...
@@ -20,7 +20,7 @@ import sequin
20 20
 import ssh_agent_client
21 21
 
22 22
 __author__ = 'Marco Ricci <m@the13thletter.info>'
23
-__version__ = '0.1.2'
23
+__version__ = '0.1.3'
24 24
 
25 25
 
26 26
 class AmbiguousByteRepresentationError(ValueError):
... ...
@@ -33,7 +33,7 @@ if TYPE_CHECKING:
33 33
 
34 34
 __all__ = ('Sequin', 'SequinExhaustedError')
35 35
 __author__ = 'Marco Ricci <m@the13thletter.info>'
36
-__version__ = '0.1.2'
36
+__version__ = '0.1.3'
37 37
 
38 38
 
39 39
 class Sequin:
... ...
@@ -22,7 +22,7 @@ if TYPE_CHECKING:
22 22
 
23 23
 __all__ = ('SSHAgentClient',)
24 24
 __author__ = 'Marco Ricci <m@the13thletter.info>'
25
-__version__ = '0.1.2'
25
+__version__ = '0.1.3'
26 26
 
27 27
 # In SSH bytestrings, the "length" of the byte string is stored as
28 28
 # a 4-byte/32-bit unsigned integer at the beginning.
... ...
@@ -1 +0,0 @@
1
-Add an alternate MkDocs configuration for building the documentation in offline mode.
... ...
@@ -1 +0,0 @@
1
-Fix typing issues according to `mypy`'s strict mode.
... ...
@@ -1 +0,0 @@
1
-Do not crash upon selecting a key on the command-line if there already is a key stored in the configuration.
... ...
@@ -1 +0,0 @@
1
-Create the configuration directory upon saving, if it does not yet exist.
... ...
@@ -1 +0,0 @@
1
-Isolate the tests properly and consistently from the user's configuration, so that user configuration problems do not cause unrelated test failures.
2 0