From 1418c1380ab6591e37275a50e3bb16b0d780889f Mon Sep 17 00:00:00 2001 From: vicanso <tree.xie@outlook.com> Date: Sat, 14 Dec 2024 12:30:52 +0800 Subject: [PATCH] chore: version 0.9.4 --- .github/workflows/publish.yml | 28 ++++++++++++++-------------- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- Makefile | 2 +- 5 files changed, 45 insertions(+), 17 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 71608c2..83e5a11 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -248,20 +248,20 @@ jobs: echo "PERL=$((where.exe perl)[0])" | Out-File -FilePath $env:GITHUB_ENV -Append -Encoding utf8 echo "OPENSSL_SRC_PERL=$((where.exe perl)[0])" | Out-File -FilePath $env:GITHUB_ENV -Append -Encoding utf8 - - name: Run cargo release - shell: bash - run: | - cargo --version - cargo build --release --features=full - mv target/release/pingap.exe ./pingap-windows.exe - - name: Zip - shell: powershell - run: | - Compress-Archive -Path pingap-windows.exe -Destination pingap-windows.exe.zip - - name: Upload asset - shell: bash - run: | - ./.github/workflows/upload_asset.sh ./pingap-windows.exe.zip $GITHUB_TOKEN + # - name: Run cargo release + # shell: bash + # run: | + # cargo --version + # cargo build --release --features=full + # mv target/release/pingap.exe ./pingap-windows.exe + # - name: Zip + # shell: powershell + # run: | + # Compress-Archive -Path pingap-windows.exe -Destination pingap-windows.exe.zip + # - name: Upload asset + # shell: bash + # run: | + # ./.github/workflows/upload_asset.sh ./pingap-windows.exe.zip $GITHUB_TOKEN docker: runs-on: ubuntu-20.04 timeout-minutes: 3600 diff --git a/CHANGELOG.md b/CHANGELOG.md index b81ad5f..30f44e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # Changelog +## [0.9.4](https://github.com/vicanso/pingap/compare/v0.9.3..0.9.4) - 2024-12-14 + +### ⛰️ Features + +- File cache support limit tinyufo cache size - ([9aa1219](https://github.com/vicanso/pingap/commit/9aa12195562ec970cb0b0923bb34a93e67125435)) + +### 🐛 Bug Fixes + +- Fix open telemetry init - ([a6784a0](https://github.com/vicanso/pingap/commit/a6784a0f7a6ea42d93db0bee4f8a94c595b4e7c5)) +- Fix 80 port for admin plugin, #58 - ([1d41c05](https://github.com/vicanso/pingap/commit/1d41c057f6df561b9549b9c08a4bb015fef6d7e1)) + +### 🚜 Refactor + +- Update package - ([e744805](https://github.com/vicanso/pingap/commit/e74480551eb0eacd258bcc16890114accb385278)) +- Adjust acme token directory - ([55413ad](https://github.com/vicanso/pingap/commit/55413ad78b691465a7814ea3c6b05fb17fbd2ef3)) +- Save acme token as file - ([00cb15b](https://github.com/vicanso/pingap/commit/00cb15baa01548990925619b8f0ed0da860d996c)) +- Save let's encrypt cert and key to config storage - ([6e7b5b7](https://github.com/vicanso/pingap/commit/6e7b5b7991f4dc8afc618117de8cbc8d7e340823)) +- Adjust certificate of tls - ([757a75c](https://github.com/vicanso/pingap/commit/757a75cd272cd6cffd9fdb7ccc49a159ff55ba01)) + +### 📚 Documentation + +- Update benchmark - ([3406310](https://github.com/vicanso/pingap/commit/3406310c9d2901b79d18a559c170559287e672e9)) + +### ⚙️ Miscellaneous Tasks + +- Update dependencies - ([571d199](https://github.com/vicanso/pingap/commit/571d19973c9016fc34048c549b6b24dc9fc95134)) +- Use rust 1.82.0 - ([f314e83](https://github.com/vicanso/pingap/commit/f314e83ae2bbbbdbb408614c156de542f6378a4e)) + ## [0.9.3](https://github.com/vicanso/pingap/compare/v0.9.2..0.9.3) - 2024-12-08 ### ⛰️ Features diff --git a/Cargo.lock b/Cargo.lock index 1800c84..7a9d953 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2724,7 +2724,7 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "pingap" -version = "0.9.3" +version = "0.9.4" dependencies = [ "TinyUFO", "aes-gcm-siv", diff --git a/Cargo.toml b/Cargo.toml index c0c548c..14afd3e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pingap" -version = "0.9.3" +version = "0.9.4" authors = ["Tree Xie <tree.xie@outlook.com>"] edition = "2021" categories = ["network-programming", "web-programming::http-server"] diff --git a/Makefile b/Makefile index 43dfa8f..4c177b7 100644 --- a/Makefile +++ b/Makefile @@ -80,4 +80,4 @@ hooks: cp hooks/* .git/hooks/ version: - git cliff --unreleased --tag 0.9.3 --prepend CHANGELOG.md + git cliff --unreleased --tag 0.9.4 --prepend CHANGELOG.md