1
0
Fork 0
mirror of https://gitlab.com/msrd0/gotham-restful.git synced 2025-02-22 12:42:28 +00:00

release 0.2.0

This commit is contained in:
Dominic 2021-02-27 17:16:04 +01:00
parent 31f92c07cd
commit bb6f5b0fdd
Signed by: msrd0
GPG key ID: DCC8C247452E98F9
4 changed files with 6 additions and 5 deletions

View file

@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [Unreleased]
## [0.2.0] - 2021-02-27
### Added ### Added
- Support custom HTTP response headers - Support custom HTTP response headers
- New `endpoint` router extension with associated `Endpoint` trait ([!18]) - New `endpoint` router extension with associated `Endpoint` trait ([!18])

View file

@ -5,7 +5,7 @@ members = [".", "./derive", "./example"]
[package] [package]
name = "gotham_restful" name = "gotham_restful"
version = "0.2.0-dev" version = "0.2.0"
authors = ["Dominic Meiser <git@msrd0.de>"] authors = ["Dominic Meiser <git@msrd0.de>"]
edition = "2018" edition = "2018"
description = "RESTful additions for the gotham web framework" description = "RESTful additions for the gotham web framework"
@ -24,7 +24,7 @@ futures-core = "0.3.7"
futures-util = "0.3.7" futures-util = "0.3.7"
gotham = { version = "0.5.0", default-features = false } gotham = { version = "0.5.0", default-features = false }
gotham_derive = "0.5.0" gotham_derive = "0.5.0"
gotham_restful_derive = "0.2.0-dev" gotham_restful_derive = "0.2.0"
log = "0.4.8" log = "0.4.8"
mime = "0.3.16" mime = "0.3.16"
serde = { version = "1.0.110", features = ["derive"] } serde = { version = "1.0.110", features = ["derive"] }

View file

@ -2,7 +2,7 @@
[package] [package]
name = "gotham_restful_derive" name = "gotham_restful_derive"
version = "0.2.0-dev" version = "0.2.0"
authors = ["Dominic Meiser <git@msrd0.de>"] authors = ["Dominic Meiser <git@msrd0.de>"]
edition = "2018" edition = "2018"
description = "Derive macros for gotham_restful" description = "Derive macros for gotham_restful"
@ -18,7 +18,6 @@ proc-macro = true
gitlab = { repository = "msrd0/gotham-restful", branch = "master" } gitlab = { repository = "msrd0/gotham-restful", branch = "master" }
[dependencies] [dependencies]
heck = "0.3.1"
once_cell = "1.5" once_cell = "1.5"
paste = "1.0" paste = "1.0"
proc-macro2 = "1.0.13" proc-macro2 = "1.0.13"

View file

@ -18,7 +18,7 @@ gitlab = { repository = "msrd0/gotham-restful", branch = "master" }
fake = "2.2.2" fake = "2.2.2"
gotham = { version = "0.5.0", default-features = false } gotham = { version = "0.5.0", default-features = false }
gotham_derive = "0.5.0" gotham_derive = "0.5.0"
gotham_restful = { version = "0.2.0-dev", features = ["auth", "cors", "openapi"], default-features = false } gotham_restful = { version = "0.2.0", features = ["auth", "cors", "openapi"], default-features = false }
log = "0.4.8" log = "0.4.8"
pretty_env_logger = "0.4" pretty_env_logger = "0.4"
serde = "1.0.110" serde = "1.0.110"