From 803975fd20f2e14f119684641cad0ef9f56f38a3 Mon Sep 17 00:00:00 2001 From: vicanso Date: Sat, 2 Nov 2024 15:50:20 +0800 Subject: [PATCH] chore: version 0.9.0 --- CHANGELOG.md | 18 ++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- Makefile | 2 +- 4 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d110bc..1c2a768 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [0.9.0](https://github.com/vicanso/pingap/compare/v0.8.12..0.9.0) - 2024-11-02 + +### ⛰️ Features + +- Support user agent restriction plugin - ([c97adcd](https://github.com/vicanso/pingap/commit/c97adcd5ff8eb317ac1161e77139b8ddec713005)) +- Support get storage value for pingap - ([e51a076](https://github.com/vicanso/pingap/commit/e51a076529c73bf7c07cca145d570f484051fc95)) +- Support aes encrypt and decrypt - ([b38843f](https://github.com/vicanso/pingap/commit/b38843f83eca7221467648c3eaca1565e179fbf8)) + +### 🚜 Refactor + +- Adjust aes encrypt and decrypt - ([f700ff7](https://github.com/vicanso/pingap/commit/f700ff789329ff5e2ac8eefd2c72ce8dc0a7447f)) +- Adjust prometheus - ([2c86d21](https://github.com/vicanso/pingap/commit/2c86d217108a0b093239c3b76e2c29d24d5442d3)) +- Adjust omit includes value - ([d2b2306](https://github.com/vicanso/pingap/commit/d2b23063157e5ac154bb005d67ab63ddcea09201)) + +### ⚙️ Miscellaneous Tasks + +- Update pingora version - ([b9533d6](https://github.com/vicanso/pingap/commit/b9533d67c437d1dbb5b8dd11b48e91ac59934ed0)) + ## [0.8.12](https://github.com/vicanso/pingap/compare/v0.8.11..0.8.12) - 2024-10-27 ### ⛰️ Features diff --git a/Cargo.lock b/Cargo.lock index c8b2c5a..f057343 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2548,7 +2548,7 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "pingap" -version = "0.8.12" +version = "0.9.0" dependencies = [ "TinyUFO", "aes-gcm-siv", diff --git a/Cargo.toml b/Cargo.toml index 58be56e..5e0fa1d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pingap" -version = "0.8.12" +version = "0.9.0" authors = ["Tree Xie "] edition = "2021" categories = ["network-programming", "web-programming::http-server"] diff --git a/Makefile b/Makefile index 59be05b..d0b379f 100644 --- a/Makefile +++ b/Makefile @@ -80,4 +80,4 @@ hooks: cp hooks/* .git/hooks/ version: - git cliff --unreleased --tag 0.8.12 --prepend CHANGELOG.md + git cliff --unreleased --tag 0.9.0 --prepend CHANGELOG.md