From b100d74ec0eb31f6176738bfed47e77492e1266b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klemen=20Tu=C5=A1ar?= Date: Mon, 29 Apr 2024 00:45:27 +0100 Subject: [PATCH] :bookmark: release v0.1.5 ## 0.1.5 * [CHORE] added Sphinx [documentation](https://techouse.github.io/qs_codec/) --- CHANGELOG.md | 4 ++++ docs/conf.py | 2 +- pyproject.toml | 1 + src/qs_codec/__init__.py | 2 +- 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d8b057..4dee206 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.5 + +* [CHORE] added Sphinx [documentation](https://techouse.github.io/qs_codec/) + ## 0.1.4 * [FIX] incorrect parsing of nested params with closing square bracket `]` in the property name ([#1](https://github.com/techouse/qs_codec/pull/1)) diff --git a/docs/conf.py b/docs/conf.py index 62ee3c5..f97efc1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -14,7 +14,7 @@ project = "qs-codec" copyright = "2024, Klemen Tusar" author = "Klemen Tusar" -release = "0.1.4" +release = "0.1.5" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 002bbc3..3479125 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,6 +11,7 @@ requires-python = ">=3.8" authors = [ { name = "Klemen Tusar", email = "techouse@gmail.com" }, ] +documentation = "https://techouse.github.io/qs_codec/" keywords = [ "qs", "codec", diff --git a/src/qs_codec/__init__.py b/src/qs_codec/__init__.py index 96b26e0..1a3f4e1 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.4" +__version__ = "0.1.5" from .decode import decode from .encode import encode