Skip to content

Commit 7b3d719

Browse files
authored
Merge pull request #51 from tmccombs/auto-publish
Auto publish
2 parents 6c185ff + 7c331df commit 7b3d719

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

.github/workflows/release.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Release
2+
on:
3+
release:
4+
types: [published]
5+
6+
jobs:
7+
publish:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses actions/checkout@v4
11+
- name: Install toolchain
12+
run: |
13+
rustup toolchain install stable --profile minimal
14+
rustup default stable
15+
- name: Publish
16+
run: cargo publish
17+

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.10.3]
6+
7+
### Changes
8+
9+
- Make docs.rs builds more reliable
10+
- Added Github action to automate publishing to crates.io
11+
512
## [0.10.2]
613

714
### Changes

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tls-listener"
33
description = "wrap incoming Stream of connections in TLS"
4-
version = "0.10.2"
4+
version = "0.10.3"
55
authors = ["Thayne McCombs <[email protected]>"]
66
repository = "https://github.com/tmccombs/tls-listener"
77
edition = "2018"

0 commit comments

Comments
 (0)