From 1725b13d4c34afe1dca6615b6338bb3edb846c88 Mon Sep 17 00:00:00 2001 From: Xinyu Ma Date: Sun, 20 Mar 2022 23:55:17 -0700 Subject: [PATCH] Prepare release 0.3-1 --- .devcontainer/Dockerfile | 2 +- CHANGELOG.rst | 12 ++++++++++++ README.rst | 2 +- src/ndn/__init__.py | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 9b0bf60..37570d9 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,6 +1,6 @@ # [Choice] Python version: 3, 3.8, 3.7, 3.6 ARG VARIANT=3 -FROM ghcr.io/zjkmxy/nfd-codespace:0.7.1 +FROM ghcr.io/zjkmxy/nfd-codespace:22.02 # [Optional] If your pip requirements rarely change, uncomment this section to add them to the image. # COPY requirements.txt /tmp/pip-tmp/ diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1c7d0e3..f4b3477 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,18 @@ Changelog ========= +0.3-1 (2022-03-20) +++++++++++++++++++ +* Add Light VerSec and cascade validator. +* Add UDP support. +* Support remote prefix registration. +* NDNLPv2 protocol update. +* NDN 0.3 protocol update (ForwardingHint). +* Add Boost INFO parser. +* Drop Python 3.8 support due to typing hint incompatability. + CPython 3.8 should still work, but PyPy 3.8 is known to be incompatible. +* Bug fixes. + 0.3 (2021-11-21) ++++++++++++++++ * Add ``express_raw_interest`` function to ``NDNApp``. diff --git a/README.rst b/README.rst index 216b559..1332222 100644 --- a/README.rst +++ b/README.rst @@ -8,7 +8,7 @@ python-ndn A Named Data Networking client library with AsyncIO support in Python 3. -It supports Python >=3.9 and PyPy3 >=7.3.7. +It supports Python >=3.9 and PyPy3.9 >=7.3.8. Please see our documentation_ if you have any issues. diff --git a/src/ndn/__init__.py b/src/ndn/__init__.py index 6a35e85..3ee78d6 100644 --- a/src/ndn/__init__.py +++ b/src/ndn/__init__.py @@ -1 +1 @@ -__version__ = "0.3" +__version__ = "0.3-1"