Skip to content

Commit

Permalink
Release gotham_restful 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
msrd0 committed May 14, 2024
1 parent 8aeb371 commit 42d0836
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 19 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ This project adheres to [Semantic Versioning](https://semver.org).

## Unreleased

## [0.9.0] - TBD
## [0.9.0] - 2024-05-14
### Changed
- The OpenAPI operation id will now be generated from the function name instead of the
operation verb

### Updated
- `openapi_type` has been updated to 0.5
- `jsonwebtoken` has been updated to 9.3
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = [".", "./derive", "./redoc"]

[package]
name = "gotham_restful"
version = "0.8.5"
version = "0.9.0"
authors = ["Dominic Meiser <[email protected]>"]
edition = "2021"
rust-version = "1.73.0"
Expand All @@ -21,7 +21,7 @@ include = ["/src/**/*.rs", "/LICENSE", "/crates-io.md"]
futures-core = "0.3.19"
futures-util = "0.3.19"
gotham = { version = "0.7.4", features = ["derive"], default-features = false }
gotham_restful_derive = { version = "0.8.3", path = "./derive" }
gotham_restful_derive = { version = "0.9.0", path = "./derive" }
log = "0.4.12"
serde = { version = "1.0.186", features = ["derive"] }
serde_json = "1.0"
Expand All @@ -30,7 +30,7 @@ thiserror = "1.0.2"
# non-feature optional dependencies
base64 = { version = "0.22", optional = true }
gotham_middleware_diesel = { version = "0.5.1", optional = true }
gotham_restful_redoc = { version = "0.2.5", path = "./redoc", optional = true }
gotham_restful_redoc = { version = "0.2.6", path = "./redoc", optional = true }
jsonwebtoken = { version = "9.3", default-features = false, optional = true }
lazy-regex = { version = "3.0", optional = true }
openapi_type = { version = "0.5.0", optional = true }
Expand All @@ -40,7 +40,7 @@ sha2 = { version = "0.10", optional = true }
[dev-dependencies]
diesel = { version = "2.1", features = ["postgres"] }
futures-executor = "0.3.19"
gotham = { version = "0.7.2", features = ["testing"], default-features = false }
gotham = { version = "0.7.4", features = ["testing"], default-features = false }
paste = "1.0"
pretty_assertions = "1.0"
simple_logger = "5.0"
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -427,18 +427,18 @@ limitations under the License.
```
[contributors]: https://github.com/msrd0/gotham_restful/graphs/contributors
[__cargo_doc2readme_dependencies_info]: ggGkYW0BYXSEG_c05bNSqfUVG2tdi6p1jFmpG4qq1UVcYL2XGy6DEJ4tSdgGYXKEG5SJ8EcO8pvsG6aAql37ujSmG2rGlxSAmKbZG4WCYbMMmkI6YWSEgmZnb3RoYW1lMC43LjSCbmdvdGhhbV9yZXN0ZnVsZTAuOC41gmxvcGVuYXBpX3R5cGVlMC41LjCCanNlcmRlX2pzb25nMS4wLjExNw
[__cargo_doc2readme_dependencies_info]: ggGkYW0BYXSEG_c05bNSqfUVG2tdi6p1jFmpG4qq1UVcYL2XGy6DEJ4tSdgGYXKEG5SJ8EcO8pvsG6aAql37ujSmG2rGlxSAmKbZG4WCYbMMmkI6YWSEgmZnb3RoYW1lMC43LjSCbmdvdGhhbV9yZXN0ZnVsZTAuOS4wgmxvcGVuYXBpX3R5cGVlMC41LjCCanNlcmRlX2pzb25nMS4wLjExNw
[__link0]: https://crates.io/crates/gotham/0.7.4
[__link1]: https://doc.rust-lang.org/stable/std/primitive.i64.html
[__link10]: https://docs.rs/gotham/0.7.4/gotham/?search=state::State
[__link11]: https://docs.rs/openapi_type/0.5.0/openapi_type/?search=OpenapiType
[__link12]: https://docs.rs/gotham_restful/0.8.5/gotham_restful/?search=Endpoint
[__link13]: https://docs.rs/gotham_restful/0.8.5/gotham_restful/?search=EndpointWithSchema
[__link12]: https://docs.rs/gotham_restful/0.9.0/gotham_restful/?search=Endpoint
[__link13]: https://docs.rs/gotham_restful/0.9.0/gotham_restful/?search=EndpointWithSchema
[__link2]: https://doc.rust-lang.org/stable/std/string/struct.String.html
[__link3]: https://docs.rs/gotham_restful/0.8.5/gotham_restful/?search=RequestBody
[__link3]: https://docs.rs/gotham_restful/0.9.0/gotham_restful/?search=RequestBody
[__link4]: https://docs.rs/gotham/0.7.4/gotham/?search=extractor::QueryStringExtractor
[__link5]: https://docs.rs/gotham/0.7.4/gotham/?search=state::State
[__link6]: https://crates.io/crates/serde_json/1.0.117
[__link7]: https://docs.rs/gotham_restful/0.8.5/gotham_restful/?search=Response::header
[__link8]: https://docs.rs/gotham_restful/0.8.5/gotham_restful/?search=cors::CorsRoute
[__link7]: https://docs.rs/gotham_restful/0.9.0/gotham_restful/?search=Response::header
[__link8]: https://docs.rs/gotham_restful/0.9.0/gotham_restful/?search=cors::CorsRoute
[__link9]: https://diesel.rs/
12 changes: 6 additions & 6 deletions crates-io.md
Original file line number Diff line number Diff line change
Expand Up @@ -395,18 +395,18 @@ limitations under the License.
```
[contributors]: https://github.com/msrd0/gotham_restful/graphs/contributors
[__cargo_doc2readme_dependencies_info]: ggGkYW0BYXSEG6RlNYoaGGVNG14HXEhSOW3-GwDJMt780dDKG2uMqUakEThCYXKEG5SJ8EcO8pvsG6aAql37ujSmG2rGlxSAmKbZG4WCYbMMmkI6YWSEgmZnb3RoYW1lMC43LjSCbmdvdGhhbV9yZXN0ZnVsZTAuOC41gmxvcGVuYXBpX3R5cGVlMC41LjCCanNlcmRlX2pzb25nMS4wLjExNw
[__cargo_doc2readme_dependencies_info]: ggGkYW0BYXSEG6RlNYoaGGVNG14HXEhSOW3-GwDJMt780dDKG2uMqUakEThCYXKEG5SJ8EcO8pvsG6aAql37ujSmG2rGlxSAmKbZG4WCYbMMmkI6YWSEgmZnb3RoYW1lMC43LjSCbmdvdGhhbV9yZXN0ZnVsZTAuOS4wgmxvcGVuYXBpX3R5cGVlMC41LjCCanNlcmRlX2pzb25nMS4wLjExNw
[__link0]: https://crates.io/crates/gotham/0.7.4
[__link1]: https://doc.rust-lang.org/stable/std/primitive.i64.html
[__link10]: https://docs.rs/gotham/0.7.4/gotham/?search=state::State
[__link11]: https://docs.rs/openapi_type/0.5.0/openapi_type/?search=OpenapiType
[__link12]: https://docs.rs/gotham_restful/0.8.5/gotham_restful/?search=Endpoint
[__link13]: https://docs.rs/gotham_restful/0.8.5/gotham_restful/?search=EndpointWithSchema
[__link12]: https://docs.rs/gotham_restful/0.9.0/gotham_restful/?search=Endpoint
[__link13]: https://docs.rs/gotham_restful/0.9.0/gotham_restful/?search=EndpointWithSchema
[__link2]: https://doc.rust-lang.org/stable/std/string/struct.String.html
[__link3]: https://docs.rs/gotham_restful/0.8.5/gotham_restful/?search=RequestBody
[__link3]: https://docs.rs/gotham_restful/0.9.0/gotham_restful/?search=RequestBody
[__link4]: https://docs.rs/gotham/0.7.4/gotham/?search=extractor::QueryStringExtractor
[__link5]: https://docs.rs/gotham/0.7.4/gotham/?search=state::State
[__link6]: https://crates.io/crates/serde_json/1.0.117
[__link7]: https://docs.rs/gotham_restful/0.8.5/gotham_restful/?search=Response::header
[__link8]: https://docs.rs/gotham_restful/0.8.5/gotham_restful/?search=cors::CorsRoute
[__link7]: https://docs.rs/gotham_restful/0.9.0/gotham_restful/?search=Response::header
[__link8]: https://docs.rs/gotham_restful/0.9.0/gotham_restful/?search=cors::CorsRoute
[__link9]: https://diesel.rs/
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "gotham_restful_derive"
version = "0.8.3"
version = "0.9.0"
authors = ["Dominic Meiser <[email protected]>"]
edition = "2021"
description = "Private implementation detail of gotham_restful"
Expand Down
2 changes: 1 addition & 1 deletion redoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[package]
workspace = ".."
name = "gotham_restful_redoc"
version = "0.2.5+2.1.4"
version = "0.2.6+2.1.4"
authors = ["Dominic Meiser <[email protected]>"]
edition = "2021"
description = "Private implementation detail of gotham_restful"
Expand Down

0 comments on commit 42d0836

Please sign in to comment.