Release 0.1.2
Marco Ricci

Marco Ricci commited on 2024-07-22 10:00:08
Zeige 10 geänderte Dateien mit 19 Einfügungen und 14 Löschungen.

... ...
@@ -30,6 +30,21 @@ effectively constitute a new <q>major</q> release.)
30 30
 
31 31
 <!-- towncrier release notes start -->
32 32
 
33
+## 0.1.2 (2024-07-22)
34
+
35
+#### Fixed
36
+
37
+- Include and exclude the correct files in the `sdist` and `wheel`
38
+  distributions.  (Previously, `sdist` contained VCS artifacts, and `wheel` was
39
+  missing some paths.)
40
+- Lint and reformat all code using [ruff](https://astral.sh/ruff/).
41
+- Mention [`mkdocstrings-python`](https://mkdocstrings.github.io/python/) in
42
+  the documentation's page footer.
43
+- Remove JavaScript and external font loading from documentation website, so
44
+  that the site works even in restricted browser settings.
45
+- Set up a changelog, using [towncrier](https://pypi.org/package/towncrier).
46
+
47
+
33 48
 ## 0.1.1 (2024-07-14)
34 49
 
35 50
 #### Fixed
... ...
@@ -27,7 +27,7 @@ dependencies = [
27 27
   "click>=8.1",
28 28
   "typing_extensions",
29 29
 ]
30
-version = "0.1.1"
30
+version = "0.1.2"
31 31
 
32 32
 [project.optional-dependencies]
33 33
 dev = ["black", "coverage", "hatch>=1.10", "mkdocs", "mkdocs-material",
... ...
@@ -18,7 +18,7 @@ import sequin
18 18
 import ssh_agent_client
19 19
 
20 20
 __author__ = 'Marco Ricci <m@the13thletter.info>'
21
-__version__ = '0.1.1'
21
+__version__ = '0.1.2'
22 22
 
23 23
 
24 24
 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.1'
36
+__version__ = '0.1.2'
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.1'
25
+__version__ = '0.1.2'
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,2 +0,0 @@
1
-
2
-Set up a changelog, using [towncrier](https://pypi.org/package/towncrier).
... ...
@@ -1,2 +0,0 @@
1
-
2
-Mention [`mkdocstrings-python`](https://mkdocstrings.github.io/python/) in the documentation's page footer.
... ...
@@ -1,2 +0,0 @@
1
-
2
-Remove JavaScript and external font loading from documentation website, so that the site works even in restricted browser settings.
... ...
@@ -1,2 +0,0 @@
1
-
2
-Include and exclude the correct files in the `sdist` and `wheel` distributions.  (Previously, `sdist` contained VCS artifacts, and `wheel` was missing some paths.)
... ...
@@ -1,2 +0,0 @@
1
-
2
-Lint and reformat all code using [ruff](https://astral.sh/ruff/).
3 0