Skip to content

Commit

Permalink
0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Goldziher committed Mar 4, 2023
1 parent 73c3e33 commit ba81828
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 58 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repos:
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v3.0.0-alpha.4"
rev: "v3.0.0-alpha.6"
hooks:
- id: prettier
- repo: https://github.com/asottile/pyupgrade
Expand All @@ -25,7 +25,7 @@ repos:
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 22.12.0
rev: 23.1.0
hooks:
- id: black
args: [--config=./pyproject.toml]
Expand Down
77 changes: 43 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Ultra-fast query string and url-encoded form-data parsers"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/starlite-api/fast-query-parsers"
version = "0.3.0"
version = "0.3.1"
edition = "2021"

[lib]
Expand All @@ -14,8 +14,8 @@ crate-type = ["cdylib"]

[dependencies]
lazy_static = "1.4.0"
pyo3 = { version = "0.17.3", features = ["extension-module", "abi3-py38"] }
pythonize = "0.17.0"
pyo3 = { version = "0.18.1", features = ["extension-module", "abi3-py38"] }
pythonize = "0.18.0"
regex = { version = "1.7.0", features = ["perf"] }
rustc-hash = "1.1.0"
serde_json = "1.0.90"
Expand Down
36 changes: 18 additions & 18 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fast-query-parsers"
version = "0.3.0"
version = "0.3.1"
description = "Ultra-fast query string and url-encoded form-data parsers"
authors = ["Na'aman Hirschfeld <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit ba81828

Please sign in to comment.