Skip to content

Commit ba81828

Browse files
committed
0.3.1
1 parent 73c3e33 commit ba81828

File tree

5 files changed

+67
-58
lines changed

5 files changed

+67
-58
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repos:
77
- id: check-yaml
88
- id: check-added-large-files
99
- repo: https://github.com/pre-commit/mirrors-prettier
10-
rev: "v3.0.0-alpha.4"
10+
rev: "v3.0.0-alpha.6"
1111
hooks:
1212
- id: prettier
1313
- repo: https://github.com/asottile/pyupgrade
@@ -25,7 +25,7 @@ repos:
2525
hooks:
2626
- id: isort
2727
- repo: https://github.com/psf/black
28-
rev: 22.12.0
28+
rev: 23.1.0
2929
hooks:
3030
- id: black
3131
args: [--config=./pyproject.toml]

Cargo.lock

Lines changed: 43 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Ultra-fast query string and url-encoded form-data parsers"
55
readme = "README.md"
66
license-file = "LICENSE"
77
repository = "https://github.com/starlite-api/fast-query-parsers"
8-
version = "0.3.0"
8+
version = "0.3.1"
99
edition = "2021"
1010

1111
[lib]
@@ -14,8 +14,8 @@ crate-type = ["cdylib"]
1414

1515
[dependencies]
1616
lazy_static = "1.4.0"
17-
pyo3 = { version = "0.17.3", features = ["extension-module", "abi3-py38"] }
18-
pythonize = "0.17.0"
17+
pyo3 = { version = "0.18.1", features = ["extension-module", "abi3-py38"] }
18+
pythonize = "0.18.0"
1919
regex = { version = "1.7.0", features = ["perf"] }
2020
rustc-hash = "1.1.0"
2121
serde_json = "1.0.90"

poetry.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "fast-query-parsers"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
description = "Ultra-fast query string and url-encoded form-data parsers"
55
authors = ["Na'aman Hirschfeld <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)