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 ### 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) ## axum-valid 0.10.0 (2023-10-09)
### Added ### Added

View File

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