From e61a3d58d0e649a33c09a7a0fc37f8060fa0c7f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klemen=20Tu=C5=A1ar?= Date: Mon, 29 Apr 2024 22:44:43 +0100 Subject: [PATCH] :bookmark: release v0.1.6 ## 0.1.6 * [CHORE] update README with links to [documentation](https://techouse.github.io/qs_codec/) --- CHANGELOG.md | 4 ++++ src/qs_codec/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4dee206..2503e84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.6 + +* [CHORE] update README with links to [documentation](https://techouse.github.io/qs_codec/) + ## 0.1.5 * [CHORE] added Sphinx [documentation](https://techouse.github.io/qs_codec/) diff --git a/src/qs_codec/__init__.py b/src/qs_codec/__init__.py index 1a3f4e1..d8ad719 100644 --- a/src/qs_codec/__init__.py +++ b/src/qs_codec/__init__.py @@ -1,6 +1,6 @@ """A query string encoding and decoding library for Python. Ported from qs_codec for JavaScript.""" -__version__ = "0.1.5" +__version__ = "0.1.6" from .decode import decode from .encode import encode