1
0
Fork 0
mirror of https://gitlab.com/msrd0/gotham-restful.git synced 2025-02-22 20:52:27 +00:00

bump version to 0.1.1 and add changelog

This commit is contained in:
Dominic 2020-12-28 18:35:48 +01:00
parent 1ac323accc
commit 9efc1cb192
Signed by: msrd0
GPG key ID: DCC8C247452E98F9
3 changed files with 23 additions and 3 deletions

20
CHANGELOG.md Normal file
View file

@ -0,0 +1,20 @@
# Changelog
All notable changes to this project will be documented in this file.
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.1.1] - 2020-12-28
### Added
- Support for `&mut State` parameters in method handlers
- Support for `NonZeroU` types in the OpenAPI Specification
### Changed
- cookie auth does not require a middleware for parsing cookies anymore
- the derive macro produces no more private `mod`s which makes error message more readable
- documentation now makes use of the `[Type]` syntax introduced in Rust 1.48
## [0.1.0] - 2020-10-02
Previous changes are not tracked by this changelog file. Refer to the [releases](https://gitlab.com/msrd0/gotham-restful/-/releases) for the changelog.

View file

@ -5,7 +5,7 @@ members = ["derive", "example"]
[package]
name = "gotham_restful"
version = "0.1.0"
version = "0.1.1"
authors = ["Dominic Meiser <git@msrd0.de>"]
edition = "2018"
description = "RESTful additions for the gotham web framework"
@ -26,7 +26,7 @@ futures-util = "0.3.7"
gotham = { version = "0.5.0", default-features = false }
gotham_derive = "0.5.0"
gotham_middleware_diesel = { version = "0.2.0", optional = true }
gotham_restful_derive = { version = "0.1.0" }
gotham_restful_derive = { version = "0.1.1" }
indexmap = { version = "1.3.2", optional = true }
itertools = { version = "0.10.0", optional = true }
jsonwebtoken = { version = "7.1.0", optional = true }

View file

@ -2,7 +2,7 @@
[package]
name = "gotham_restful_derive"
version = "0.1.0"
version = "0.1.1"
authors = ["Dominic Meiser <git@msrd0.de>"]
edition = "2018"
description = "RESTful additions for the gotham web framework - Derive"