From c490fb1d7cc4442c1c1f518781270becfe75d1d8 Mon Sep 17 00:00:00 2001 From: Sam Tay Date: Sun, 21 Aug 2022 02:18:41 -0700 Subject: Bump version to 0.4.7 --- .github/workflows/release.yaml | 47 ++++++++++++++++++++++++++++++++++++++++++ CHANGELOG.md | 2 ++ Cargo.lock | 2 +- Cargo.toml | 2 +- 4 files changed, 51 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..e53a8d7 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,47 @@ +name: Release + +permissions: + contents: write + +on: + push: + tags: + - v[0-9]+.* + +jobs: + + create-release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: taiki-e/create-gh-release-action@v1 + with: + changelog: CHANGELOG.md + branch: main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + upload-assets: + needs: create-release + strategy: + matrix: + include: + - target: aarch64-unknown-linux-gnu + os: ubuntu-latest + - target: aarch64-apple-darwin + os: macos-latest + - target: x86_64-unknown-linux-gnu + os: ubuntu-latest + - target: x86_64-unknown-linux-musl + os: ubuntu-latest + - target: x86_64-apple-darwin + os: macos-latest + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v3 + - uses: taiki-e/upload-rust-binary-action@v1 + with: + bin: so + target: ${{ matrix.target }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index c16b28d..efa6dc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### [Unreleased] +### [v0.4.7](https://github.com/samtay/so/compare/v0.4.5...v0.4.7) + #### Added - Keybinding: Press `y` to yank to system clipboard - New config field for specifying command to copy to system clipboard diff --git a/Cargo.lock b/Cargo.lock index 6b0f194..3fd6520 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1926,7 +1926,7 @@ checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83" [[package]] name = "so" -version = "0.4.6" +version = "0.4.7" dependencies = [ "clap", "criterion", diff --git a/Cargo.toml b/Cargo.toml index f425b31..d3bec91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "so" -version = "0.4.6" +version = "0.4.7" license = "MIT" description = "A terminal interface for StackOverflow" readme = "README.md" -- cgit v1.2.3