summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Tay <samctay@pm.me>2022-08-21 02:18:41 -0700
committerSam Tay <samctay@pm.me>2022-08-21 02:18:41 -0700
commitc490fb1d7cc4442c1c1f518781270becfe75d1d8 (patch)
tree914f821d95b6f83a44c816ae0ca59b1d34daeeb1
parentebb828cef629f8355f183c0307caa28c4d5c2f8e (diff)
Bump version to 0.4.7
-rw-r--r--.github/workflows/release.yaml47
-rw-r--r--CHANGELOG.md2
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
4 files changed, 51 insertions, 2 deletions
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"