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 |
| ... | ... |
@@ -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. |