Skip to content

Commit e244330

Browse files
committed
chore: prepare v1.0.0
1 parent d94dd5e commit e244330

4 files changed

Lines changed: 8 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project
66
adheres to [Semantic Versioning](https://semver.org/).
77

8-
## Unreleased
8+
## [1.0.0] - 2025-10-10
9+
10+
[1.0.0]: https://github.com/rogdham/backports.zstd/releases/tag/v1.0.0
911

1012
### :rocket: Added
1113

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Backport of [PEP-784 “adding Zstandard to the standard library”][PEP-784]
99

1010
---
1111

12-
[📖 PEP-784][PEP-784]   |   [📃 Changelog](./CHANGELOG.md)   |   [🎯 Roadmap](https://github.com/Rogdham/backports.zstd/issues/2)
12+
[📖 PEP-784][PEP-784]   |   [📃 Changelog](./CHANGELOG.md)
1313

1414
[PEP-784]: https://peps.python.org/pep-0784/
1515

@@ -155,8 +155,8 @@ The type hints for the standard library have been contributed to
155155

156156
### Why can this library not be installed with Python 3.14?
157157

158-
This is on purpose. For Python 3.14 and later, use the `compression.zstd` module from
159-
the standard library.
158+
This is [on purpose](https://github.com/Rogdham/backports.zstd/issues/50). For Python
159+
3.14 and later, use the `compression.zstd` module from the standard library.
160160

161161
If you want your code to be compatible with multiple Python versions, condition the
162162
usage of this library based on the Python version:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "backports.zstd"
3-
version = "0.5.0"
3+
version = "1.0.0"
44
authors = [{ name = "Rogdham", email = "contact@rogdham.net" }]
55
description = "Backport of compression.zstd"
66
readme = { file = "README.md", content-type = "text/markdown" }

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
ROOT_PATH = Path(__file__).parent.absolute()
1212
with (ROOT_PATH / "LICENSE_zstd.txt").open("w") as f:
1313
f.write(
14-
"Depending on how it is build, this package may distribute the zstd library,\n"
14+
"Depending on how it is built, this package may distribute the zstd library,\n"
1515
"partially or in its integrality, in source or binary form.\n\n"
1616
"Its license is reproduced below.\n\n"
1717
"---\n\n"

0 commit comments

Comments
 (0)