diff --git a/CHANGELOG.md b/CHANGELOG.md index ec76cf36e..90d2820fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) ## [Unreleased] +## [0.18.0] - 2024-02-29 +### Changed +* Update dependencies +* (Docker) Dockerfile supports linux/arm64 but not published image +* (internal) Use Rust edition 2021 + +### Removed +* **Breaking:** remove -V flag for compatibility with the original piping-server + +### Fixed +* Log path and query instead of full URL in HTTPS + ## [0.17.0] - 2024-02-10 ### Changed * Update dependencies @@ -268,7 +280,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) ### Added * Implement basic Piping Server -[Unreleased]: https://github.com/nwtgck/piping-server-rust/compare/v0.17.0...HEAD +[Unreleased]: https://github.com/nwtgck/piping-server-rust/compare/v0.18.0...HEAD +[0.18.0]: https://github.com/nwtgck/piping-server-rust/compare/v0.17.0...v0.18.0 [0.17.0]: https://github.com/nwtgck/piping-server-rust/compare/v0.16.0...v0.17.0 [0.16.0]: https://github.com/nwtgck/piping-server-rust/compare/v0.15.0...v0.16.0 [0.15.0]: https://github.com/nwtgck/piping-server-rust/compare/v0.14.1...v0.15.0 diff --git a/Cargo.lock b/Cargo.lock index c30380256..9bfb0d07d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -700,7 +700,7 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "piping-server" -version = "0.17.1-SNAPSHOT" +version = "0.18.0" dependencies = [ "anyhow", "auto_enums", diff --git a/Cargo.toml b/Cargo.toml index 215c9077e..dc08004b9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "piping-server" -version = "0.17.1-SNAPSHOT" +version = "0.18.0" authors = ["Ryo Ota "] edition = "2021"