Skip to content

Commit

Permalink
🔖 release v0.2.0
Browse files Browse the repository at this point in the history
## 0.2.0

* [CHORE] update dependencies
* [CHORE] update README
  • Loading branch information
techouse committed May 5, 2024
1 parent 6541a48 commit ac6d3d9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.2.0

* [CHORE] update dependencies
* [CHORE] update README

## 0.1.6

* [CHORE] update README with links to [documentation](https://techouse.github.io/qs_codec/)
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

| Version | Supported |
|---------| ------------------ |
| 0.1.x | :white_check_mark: |
| 0.2.x | :white_check_mark: |

## Reporting a Vulnerability

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ classifiers = [
"Topic :: Software Development :: Libraries",
]
dependencies = [
"regex>=2024.4.16",
"types-regex>=2024.4.16.20240423",
"regex==2024.4.28",
"types-regex==2024.4.28.20240430",
]
dynamic = ["version"]

Expand Down
4 changes: 2 additions & 2 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
regex>=2024.4.16
types-regex>=2024.4.16.20240423
regex==2024.4.28
types-regex==2024.4.28.20240430
pytest>=8.1.2
pytest-cov>=5.0.0
mypy>=1.10.0
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.6"
__version__ = "0.2.0"

from .decode import decode
from .encode import encode
Expand Down

0 comments on commit ac6d3d9

Please sign in to comment.