From 9efc1cb1924d8ba38d81259c0b02357d281a21cb Mon Sep 17 00:00:00 2001 From: Dominic Date: Mon, 28 Dec 2020 18:35:48 +0100 Subject: [PATCH] bump version to 0.1.1 and add changelog --- CHANGELOG.md | 20 ++++++++++++++++++++ Cargo.toml | 4 ++-- derive/Cargo.toml | 2 +- 3 files changed, 23 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..a561d6f --- /dev/null +++ b/CHANGELOG.md @@ -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. diff --git a/Cargo.toml b/Cargo.toml index c510d7b..37d2bac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = ["derive", "example"] [package] name = "gotham_restful" -version = "0.1.0" +version = "0.1.1" authors = ["Dominic Meiser "] 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 } diff --git a/derive/Cargo.toml b/derive/Cargo.toml index f238f10..f06023c 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "gotham_restful_derive" -version = "0.1.0" +version = "0.1.1" authors = ["Dominic Meiser "] edition = "2018" description = "RESTful additions for the gotham web framework - Derive"