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:
parent
31f92c07cd
commit
bb6f5b0fdd
4 changed files with 6 additions and 5 deletions
|
@ -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).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.2.0] - 2021-02-27
|
||||
### Added
|
||||
- Support custom HTTP response headers
|
||||
- New `endpoint` router extension with associated `Endpoint` trait ([!18])
|
||||
|
|
|
@ -5,7 +5,7 @@ members = [".", "./derive", "./example"]
|
|||
|
||||
[package]
|
||||
name = "gotham_restful"
|
||||
version = "0.2.0-dev"
|
||||
version = "0.2.0"
|
||||
authors = ["Dominic Meiser <git@msrd0.de>"]
|
||||
edition = "2018"
|
||||
description = "RESTful additions for the gotham web framework"
|
||||
|
@ -24,7 +24,7 @@ futures-core = "0.3.7"
|
|||
futures-util = "0.3.7"
|
||||
gotham = { version = "0.5.0", default-features = false }
|
||||
gotham_derive = "0.5.0"
|
||||
gotham_restful_derive = "0.2.0-dev"
|
||||
gotham_restful_derive = "0.2.0"
|
||||
log = "0.4.8"
|
||||
mime = "0.3.16"
|
||||
serde = { version = "1.0.110", features = ["derive"] }
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "gotham_restful_derive"
|
||||
version = "0.2.0-dev"
|
||||
version = "0.2.0"
|
||||
authors = ["Dominic Meiser <git@msrd0.de>"]
|
||||
edition = "2018"
|
||||
description = "Derive macros for gotham_restful"
|
||||
|
@ -18,7 +18,6 @@ proc-macro = true
|
|||
gitlab = { repository = "msrd0/gotham-restful", branch = "master" }
|
||||
|
||||
[dependencies]
|
||||
heck = "0.3.1"
|
||||
once_cell = "1.5"
|
||||
paste = "1.0"
|
||||
proc-macro2 = "1.0.13"
|
||||
|
|
|
@ -18,7 +18,7 @@ gitlab = { repository = "msrd0/gotham-restful", branch = "master" }
|
|||
fake = "2.2.2"
|
||||
gotham = { version = "0.5.0", default-features = false }
|
||||
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"
|
||||
pretty_env_logger = "0.4"
|
||||
serde = "1.0.110"
|
||||
|
|
Loading…
Add table
Reference in a new issue