We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98f7ae3 commit 7ea4ecbCopy full SHA for 7ea4ecb
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# Changelog
2
3
+## v0.3.0 (2023-12-17)
4
+
5
+### Feature
6
7
+- Add reverse_pointer to the cache (#4) ([`98f7ae3`](https://github.com/bdraco/cached-ipaddress/commit/98f7ae3d1e5b3c03f34392093257594915e55d2a))
8
9
## v0.2.0 (2023-12-16)
10
11
### Feature
pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cached-ipaddress"
-version = "0.2.0"
+version = "0.3.0"
description = "Cache construction of ipaddress objects"
authors = ["J. Nick Koston <nick@koston.org>"]
license = "MIT"
src/cached_ipaddress/__init__.py
@@ -1,4 +1,4 @@
-__version__ = "0.2.0"
+__version__ = "0.3.0"
from .ipaddress import cached_ip_addresses
0 commit comments