Skip to content

Commit

Permalink
release ci
Browse files Browse the repository at this point in the history
Signed-off-by: iGxnon <[email protected]>
  • Loading branch information
iGxnon committed Jul 17, 2024
1 parent 90574d1 commit 2ba1db6
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 1 deletion.
29 changes: 29 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Release

on:
push:
tags:
- "v*"

jobs:
create_release:
name: Create Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Get release notes
id: changelog
run: |
echo "CHANGELOG=$(awk '/---/{i++; next} i==1' CHANGELOG.md)" >> $GITHUB_OUTPUT
- name: Create Release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: ${{ steps.changelog.outputs.CHANGELOG }}
draft: false
prerelease: false
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,17 @@

## Unreleased

- Support RFC6298 RttEstimator

---
## 0.1.2

- Fix fragmented packets boundary
- Refactor lots of codes
- Ensure all packets are delivered after `poll_close`
- Add packet tracing powered by `minitrace`

---
## 0.1.1

- Add `tokio-udp` feature
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "raknet-rs"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "Apache-2.0"
authors = ["iGxnon"]
Expand Down

0 comments on commit 2ba1db6

Please sign in to comment.