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 + 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"