Skip to content

Commit

Permalink
chore: prepare release of version 0.6 (#349)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagolobocastro authored Oct 13, 2021
1 parent 61a5d19 commit c411f85
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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.6.0] - 2021-10-13
### Added
- Add support for actix-web-macros methods routing [PR#289](https://github.com/wafflespeanut/paperclip/pull/289)
- Actix plugin: add an empty impl for actix-web `ReqData<T>`
Expand Down
9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "paperclip"
version = "0.5.0"
version = "0.6.0"
authors = ["Ravi Shankar <[email protected]>"]
edition = "2018"
description = "OpenAPI tooling library for type-safe compile-time checked HTTP APIs"
Expand All @@ -18,15 +18,16 @@ path = "src/bin/main.rs"
required-features = ["cli"]

[dependencies]
paperclip-actix = { path = "plugins/actix-web", version = "0.4.0", optional = true }
paperclip-core = { path = "core", version = "0.4.0" }
paperclip-macros = { path = "macros", version = "0.5.0", optional = true }

env_logger = { version = "0.8", optional = true }
git2 = { version = "0.13", optional = true }
heck = { version = "0.3", optional = true }
http = { version = "0.2", optional = true }
itertools = "0.10"
log = { version = "0.4", optional = true }
paperclip-actix = { path = "plugins/actix-web", version = "0.3.0", optional = true }
paperclip-core = { path = "core", version = "0.3.0" }
paperclip-macros = { path = "macros", version = "0.4.0", optional = true }
parking_lot = { version = ">=0.10,<0.12" }
regex = { version = "1.3", optional = true }
reqwest = { version = "0.10", features = ["blocking"], optional = true }
Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "paperclip-core"
version = "0.3.0"
version = "0.4.0"
authors = ["Ravi Shankar <[email protected]>"]
edition = "2018"
description = "Core types and traits for paperclip OpenAPI tooling library"
Expand All @@ -10,6 +10,7 @@ homepage = "https://github.com/wafflespeanut/paperclip"
repository = "https://github.com/wafflespeanut/paperclip"

[dependencies]
paperclip-macros = { path = "../macros", version = "0.5.0" }
actix-web2 = { version = "2", optional = true, default-features = false, package = "actix-web" }
actix-web3 = { version = "3", optional = true, default-features = false, package = "actix-web" }
actix-multipart = { version = "0", optional = true }
Expand All @@ -20,7 +21,6 @@ heck = { version = "0.3", optional = true }
once_cell = "1.4"
log = { version = "0.4", optional = true }
mime = "0.3"
paperclip-macros = { path = "../macros", version = "0.4.0" }
parking_lot = { version = ">=0.10,<0.12", features = ["serde"] }
pin-project = { version = "1.0", optional = true }
rust_decimal = { version = "1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "paperclip-macros"
version = "0.4.0"
version = "0.5.0"
authors = ["Ravi Shankar <[email protected]>"]
edition = "2018"
description = "Macros for paperclip OpenAPI tooling library"
Expand Down
6 changes: 3 additions & 3 deletions plugins/actix-web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "paperclip-actix"
version = "0.3.0"
version = "0.4.0"
authors = ["Ravi Shankar <[email protected]>"]
edition = "2018"
description = "Paperclip OpenAPI plugin for actix-web framework"
Expand All @@ -10,12 +10,12 @@ homepage = "https://github.com/wafflespeanut/paperclip"
repository = "https://github.com/wafflespeanut/paperclip"

[dependencies]
paperclip-core = { path = "../../core", version = "0.4.0", optional = true }
paperclip-macros = { path = "../../macros", version = "0.5.0", features = ["actix"] }
futures = "0.3"
actix-service = "1.0"
actix-web2 = { version = "2", default-features = false, optional = true, package = "actix-web" }
actix-web3 = { version = "3", default-features = false, optional = true, package = "actix-web" }
paperclip-core = { path = "../../core", version = "0.3.0", optional = true }
paperclip-macros = { path = "../../macros", version = "0.4.0", features = ["actix"] }
parking_lot = ">=0.10,<0.12"
serde_json = "1.0"
once_cell = "1.4"
Expand Down

0 comments on commit c411f85

Please sign in to comment.