Skip to content

Commit 015c6bc

Browse files
chore: release 0.8.1
Signed-off-by: Tiago Castro <[email protected]>
1 parent 6710b21 commit 015c6bc

File tree

5 files changed

+20
-10
lines changed

5 files changed

+20
-10
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.8.1] - 2023-08-20
8+
### Added
9+
- Add support for `PathBuf` type. [PR#502](https://github.com/paperclip-rs/paperclip/pull/502)
10+
- Add support for `actix-identity` type. [PR#495](https://github.com/paperclip-rs/paperclip/pull/495)
11+
- Add support for `head` method type. [PR#493](https://github.com/paperclip-rs/paperclip/pull/493)
12+
13+
### Fixed
14+
- Correct parameter name ordering. [PR#504](https://github.com/paperclip-rs/paperclip/pull/504)
15+
- No spec path for `json_spec_v3` and `swagger-ui` combination. [PR#498](https://github.com/paperclip-rs/paperclip/pull/498)
16+
717
## [0.8.0] - 2023-01-14 :warning: Breaking Changes
818
### Added
919
- Support non-boxed bodies in scope middleware. [PR#457](https://github.com/paperclip-rs/paperclip/pull/457)

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "paperclip"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
edition = "2018"
55
description = "OpenAPI tooling library for type-safe compile-time checked HTTP APIs"
66
documentation = "https://paperclip-rs.github.io/paperclip/paperclip"
@@ -17,9 +17,9 @@ path = "src/bin/main.rs"
1717
required-features = ["cli"]
1818

1919
[dependencies]
20-
paperclip-actix = { path = "plugins/actix-web", version = "0.6.0", optional = true }
21-
paperclip-core = { path = "core", version = "0.6.0" }
22-
paperclip-macros = { path = "macros", version = "0.6.2", optional = true }
20+
paperclip-actix = { path = "plugins/actix-web", version = "0.6.1", optional = true }
21+
paperclip-core = { path = "core", version = "0.6.1" }
22+
paperclip-macros = { path = "macros", version = "0.6.3", optional = true }
2323

2424
env_logger = { version = "0.8", optional = true }
2525
git2 = { version = "0.15", optional = true }

core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "paperclip-core"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
edition = "2018"
55
description = "Core types and traits for paperclip OpenAPI tooling library"
66
documentation = "https://paperclip-rs.github.io/paperclip/paperclip_core"
@@ -9,7 +9,7 @@ homepage = "https://github.com/paperclip-rs/paperclip"
99
repository = "https://github.com/paperclip-rs/paperclip"
1010

1111
[dependencies]
12-
paperclip-macros = { path = "../macros", version = "0.6.2" }
12+
paperclip-macros = { path = "../macros", version = "0.6.3" }
1313
actix-web2 = { version = "2", optional = true, default-features = false, package = "actix-web" }
1414
actix-web3 = { version = "3", optional = true, default-features = false, package = "actix-web" }
1515
actix-web4 = { version = "4", optional = true, default-features = false, package = "actix-web" }

macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "paperclip-macros"
3-
version = "0.6.2"
3+
version = "0.6.3"
44
edition = "2018"
55
description = "Macros for paperclip OpenAPI tooling library"
66
documentation = "https://paperclip-rs.github.io/paperclip/paperclip_macros"

plugins/actix-web/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "paperclip-actix"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
edition = "2018"
55
description = "Paperclip OpenAPI plugin for actix-web framework"
66
documentation = "https://paperclip-rs.github.io/paperclip/paperclip_actix"
@@ -9,8 +9,8 @@ homepage = "https://github.com/paperclip-rs/paperclip"
99
repository = "https://github.com/paperclip-rs/paperclip"
1010

1111
[dependencies]
12-
paperclip-core = { path = "../../core", version = "0.6.0", optional = true }
13-
paperclip-macros = { path = "../../macros", version = "0.6.2", features = ["actix"] }
12+
paperclip-core = { path = "../../core", version = "0.6.1", optional = true }
13+
paperclip-macros = { path = "../../macros", version = "0.6.3", features = ["actix"] }
1414
futures = "0.3"
1515
actix-service1 = { version = "1", package = "actix-service", optional = true }
1616
actix-service2 = { version = "2", package = "actix-service", optional = true }

0 commit comments

Comments
 (0)