From 5559aef11e120eff3403025061c8a4252200bcc0 Mon Sep 17 00:00:00 2001 From: Thayne McCombs Date: Mon, 13 Jan 2025 23:25:04 -0700 Subject: [PATCH 1/2] Add github action to automatically publish new version --- .github/workflows/release.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..7a63f63 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,17 @@ +name: Release +on: + release: + types: [published] + +jobs: + publish: + runs-on: ubuntu-latest + steps: + - uses actions/checkout@v4 + - name: Install toolchain + run: | + rustup toolchain install stable --profile minimal + rustup default stable + - name: Publish + run: cargo publish + From 7c331df8cff953d1519c08162503a8c487522201 Mon Sep 17 00:00:00 2001 From: Thayne McCombs Date: Mon, 13 Jan 2025 23:27:25 -0700 Subject: [PATCH 2/2] Bump version --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc3d999..9384af7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [0.10.3] + +### Changes + +- Make docs.rs builds more reliable +- Added Github action to automate publishing to crates.io + ## [0.10.2] ### Changes diff --git a/Cargo.toml b/Cargo.toml index 3fbb3e5..5e261e5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tls-listener" description = "wrap incoming Stream of connections in TLS" -version = "0.10.2" +version = "0.10.3" authors = ["Thayne McCombs "] repository = "https://github.com/tmccombs/tls-listener" edition = "2018"