Skip to content

Commit 6ec4198

Browse files
authored
Update homepage for v0.13.0 (#236)
[skip ci]
1 parent abedf60 commit 6ec4198

File tree

4 files changed

+41
-2
lines changed

4 files changed

+41
-2
lines changed

docs/changelog.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [0.13.0](https://github.com/tfpf/pysorteddict/compare/v0.12.1...v0.13.0)
4+
5+
<ul class="change-new">
6+
<li><a href="https://github.com/tfpf/pysorteddict/pull/224">#224</a> Provide built distributions for the GIL-enabled
7+
build of Python 3.14.</li>
8+
<li><a href="https://github.com/tfpf/pysorteddict/pull/230">#230</a> Support <code>datetime.date</code>,
9+
<code>datetime.timedelta</code>, <code>fractions.Fraction</code>, <code>ipaddress.IPv4Address</code>,
10+
<code>ipaddress.IPv4Interface</code>, <code>ipaddress.IPv4Network</code>, <code>ipaddress.IPv6Address</code>,
11+
<code>ipaddress.IPv6Interface</code>, <code>ipaddress.IPv6Network</code>, <code>pathlib.PosixPath</code>,
12+
<code>pathlib.PurePosixPath</code>, <code>pathlib.PureWindowsPath</code>, <code>pathlib.WindowsPath</code>,
13+
<code>time.struct_time</code> and <code>uuid.UUID</code> keys.</li>
14+
<li><a href="https://github.com/tfpf/pysorteddict/pull/235">#235</a> Provide built distributions for the GIL-disabled
15+
build of Python 3.14 on Linux and macOS.</li>
16+
<li><a href="https://github.com/tfpf/pysorteddict/pull/234">#234</a> Provide a built distribution for the
17+
GIL-disabled build of Python 3.14 on Windows.</li>
18+
<li><a href="https://github.com/tfpf/pysorteddict/pull/239">#239</a> Provide built distributions for the Pyodide
19+
build of Python 3.12 and 3.13.</li>
20+
</ul>
21+
322
## [0.12.1](https://github.com/tfpf/pysorteddict/compare/v0.12.0...v0.12.1)
423

524
<ul class="change-fix">

docs/documentation.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
<summary>Documentation of older versions is available on GitHub.</summary>
66

7+
[0.12.1](https://github.com/tfpf/pysorteddict/blob/v0.12.1/docs/documentation.md)
78
[0.12.0](https://github.com/tfpf/pysorteddict/blob/v0.12.0/docs/documentation.md)
89
[0.11.0](https://github.com/tfpf/pysorteddict/blob/v0.11.0/docs/documentation.md)
910
[0.10.0](https://github.com/tfpf/pysorteddict/blob/v0.10.0/docs/documentation.md)
@@ -51,7 +52,22 @@ The following key types are always supported.
5152
The following key types are supported if they are importable (which they should always be—failure to import them may be
5253
a sign of a corrupt or damaged Python installation).
5354

55+
* `datetime.date`
56+
* `datetime.timedelta`
5457
* `decimal.Decimal`
58+
* `fractions.Fraction`
59+
* `ipaddress.IPv4Address`
60+
* `ipaddress.IPv4Interface`
61+
* `ipaddress.IPv4Network`
62+
* `ipaddress.IPv6Address`,
63+
* `ipaddress.IPv6Interface`
64+
* `ipaddress.IPv6Network`
65+
* `pathlib.PosixPath`
66+
* `pathlib.PurePosixPath`
67+
* `pathlib.PureWindowsPath`
68+
* `pathlib.WindowsPath`
69+
* `time.struct_time`
70+
* `uuid.UUID`
5571

5672
<details class="warning">
5773

docs/installation.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,14 @@ pip install pysorteddict
55
```
66

77
pysorteddict requires Python 3.10 or newer. It has been tested using CPython and PyPy, and binary wheels for the same
8-
are provided for most 64-bit Linux, macOS and Windows hosts.
8+
are provided on PyPI for most 64-bit Linux, macOS and Windows hosts.
99

1010
[View the project on PyPI.](https://pypi.org/project/pysorteddict/)
1111

12+
Pyodide wheels can be obtained from a recent GitHub release.
13+
14+
[View the latest release on GitHub.](https://github.com/tfpf/pysorteddict/releases/latest)
15+
1216
Wheels for the Raspberry Pi family of computers may be found on piwheels, but they might lag behind those on PyPI.
1317

1418
[View the project on piwheels.](https://www.piwheels.org/project/pysorteddict/)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ docs = ["furo~=2024.8", "myst-parser~=4.0"]
77

88
[project]
99
name = "pysorteddict"
10-
version = "0.13.0rc0"
10+
version = "0.13.0"
1111
authors = [
1212
{name = "Vishal Pankaj Chandratreya"},
1313
]

0 commit comments

Comments
 (0)