Skip to content

Commit

Permalink
🔖 release v0.1.5
Browse files Browse the repository at this point in the history
## 0.1.5

* [CHORE] added Sphinx [documentation](https://techouse.github.io/qs_codec/)
  • Loading branch information
techouse committed Apr 28, 2024
1 parent a2039e2 commit b100d74
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/qs_codec/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit b100d74

Please sign in to comment.