Skip to content

Commit d4b004c

Browse files
author
semantic-release
committed
0.2.1
Automatically generated by python-semantic-release
1 parent aff4bc9 commit d4b004c

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
11
# Changelog
22

3+
## v0.2.1 (2025-02-22)
4+
5+
### Bug fixes
6+
7+
- Pin prettier to 3.5.1 to fix ci (#36) ([`aff4bc9`](https://github.com/Bluetooth-Devices/zlib-fast/commit/aff4bc9bdb566de46d9b4096795f293b796af612))
8+
- Update repo links to use bluetooth-devices (#33) ([`784f870`](https://github.com/Bluetooth-Devices/zlib-fast/commit/784f870a7334eb177d760e1021011e47977d09fe))
9+
310
## v0.2.0 (2024-01-28)
411

5-
### Feature
12+
### Features
613

7-
- Add mappings for gzip module (#3) ([`058cfa8`](https://github.com/bluetooth-devices/zlib-fast/commit/058cfa8b7f75fea0ef3f98faef1a9d6a469eae72))
14+
- Add mappings for gzip module (#3) ([`058cfa8`](https://github.com/Bluetooth-Devices/zlib-fast/commit/058cfa8b7f75fea0ef3f98faef1a9d6a469eae72))
815

916
## v0.1.0 (2024-01-27)
1017

11-
### Feature
18+
### Features
1219

13-
- First version (#1) ([`72f0ee7`](https://github.com/bluetooth-devices/zlib-fast/commit/72f0ee70df6bbd976aff1971f5ddbb0fae2924a9))
20+
- First version (#1) ([`72f0ee7`](https://github.com/Bluetooth-Devices/zlib-fast/commit/72f0ee70df6bbd976aff1971f5ddbb0fae2924a9))
1421

1522
## v0.0.0 (2024-01-27)

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
project = "zlib-fast"
88
copyright = "2024, J. Nick Koston"
99
author = "J. Nick Koston"
10-
release = "0.2.0"
10+
release = "0.2.1"
1111

1212
# General configuration
1313
extensions = [

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "zlib-fast"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "A wrapper to use the fastest available zlib"
55
authors = ["J. Nick Koston <[email protected]>"]
66
license = "Apache Software License 2.0"

src/zlib_fast/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.2.0"
1+
__version__ = "0.2.1"
22

33
import gzip as gzip_original
44
import sys

0 commit comments

Comments
 (0)