Bump version to 0.10.1

This commit is contained in:
gengteng
2023-10-10 18:25:23 +08:00
parent 4be5a45632
commit 72dc8142d2
2 changed files with 20 additions and 10 deletions

View File

@@ -8,6 +8,16 @@
### Fixed
## axum-valid 0.10.1 (2023-10-10)
### Added
### Changed
* When enabling features starting with `extra_` like `extra_query`, the `extra` feature will now be automatically enabled. Previously, users had to manually enable both `extra` and `extra_*`.
### Fixed
## axum-valid 0.10.0 (2023-10-09)
### Added

View File

@@ -1,6 +1,6 @@
[package]
name = "axum-valid"
version = "0.10.0"
version = "0.10.1"
description = "Provides validation extractors for your Axum application to validate data using validator, garde, or both."
authors = ["GengTeng <me@gteng.org>"]
license = "MIT"
@@ -76,16 +76,16 @@ json = ["axum/json"]
form = ["axum/form"]
query = ["axum/query"]
typed_header = ["axum/headers"]
typed_multipart = ["axum_typed_multipart"]
msgpack = ["axum-msgpack"]
yaml = ["axum-yaml"]
into_json = ["json", "serde"]
typed_multipart = ["dep:axum_typed_multipart"]
msgpack = ["dep:axum-msgpack"]
yaml = ["dep:axum-yaml"]
into_json = ["json", "dep:serde"]
422 = []
extra = ["axum-extra"]
extra_typed_path = ["axum-extra/typed-routing"]
extra_query = ["axum-extra/query"]
extra_form = ["axum-extra/form"]
extra_protobuf = ["axum-extra/protobuf"]
extra = ["dep:axum-extra"]
extra_typed_path = ["extra", "axum-extra/typed-routing"]
extra_query = ["extra", "axum-extra/query"]
extra_form = ["extra", "axum-extra/form"]
extra_protobuf = ["extra", "axum-extra/protobuf"]
all_extra_types = ["extra", "extra_typed_path", "extra_query", "extra_form", "extra_protobuf"]
all_types = ["json", "form", "query", "typed_header", "typed_multipart", "msgpack", "yaml", "all_extra_types"]
full = ["validator", "all_types", "422", "into_json"]