Skip to content

Commit 04c5465

Browse files
committed
Release 0.9.1
1 parent e2fce7b commit 04c5465

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
- name: Package
7979
shell: bash
8080
run: |
81-
strip --target ${{ matrix.target }}
81+
strip target/${{ matrix.target }}/release/${{ env.PROJECT_NAME }}
8282
cd target/${{ matrix.target }}/release
8383
tar czvf ../../../${{ env.PROJECT_NAME }}-${{ github.ref_name }}-${{ matrix.target }}.tar.gz ${{ env.PROJECT_NAME }}
8484
cd -
@@ -127,7 +127,7 @@ jobs:
127127
- name: Package
128128
shell: bash
129129
run: |
130-
strip --target ${{ matrix.target }}
130+
strip target/${{ matrix.target }}/release/${{ env.PROJECT_NAME }}.exe
131131
cd target/${{ matrix.target }}/release
132132
7z a ../../../${{ env.PROJECT_NAME }}-${{ github.ref_name }}-${{ matrix.target }}.zip ${{ env.PROJECT_NAME }}.exe
133133
cd -

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.9.1] - 2022-06-15
4+
5+
* Set up Github Actions for continuous integration and automatic compilation of binaries for different platforms when making new releases.
6+
* Update dependencies and remove vulnerability from regex 1.5.4.
7+
* Switch from structopt to clap.
8+
* Increase MSRV to 1.56.0 to allow for dependencies using Edition 2021.
9+
310
## [0.9.0] - 2021-12-05
411

512
* Add more chord types and symbols ([#35](https://github.com/noeddl/ukebox/issues/35)).

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ukebox"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
authors = ["Anett Seeker"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

README.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Crates.io](https://img.shields.io/crates/v/ukebox)](https://crates.io/crates/ukebox)
44
[![Documentation](https://docs.rs/ukebox/badge.svg)](https://docs.rs/ukebox)
5-
[![travis](https://travis-ci.com/noeddl/ukebox.svg?branch=master)](https://travis-ci.com/noeddl/ukebox)
5+
[![Continuous integration](https://github.com/noeddl/ukebox/actions/workflows/ci.yml/badge.svg)](https://github.com/noeddl/ukebox/actions/workflows/ci.yml)
66
[![license](https://img.shields.io/crates/l/ukebox)](#license)
77
[![rustc](https://img.shields.io/badge/rustc-1.56+-lightgray.svg)](https://blog.rust-lang.org/2021/10/21/Rust-1.56.0.html)
88

@@ -19,20 +19,14 @@
1919

2020
## Installation
2121

22-
`ukebox` is intended to be a stand-alone command-line application but for the time being you need [Rust](https://www.rust-lang.org/) to build and run the program. The easiest way to install `ukebox` is to use `cargo`.
22+
Archives of precompiled binaries for each [release](https://github.com/noeddl/ukebox/releases) of `ukebox` are available for Windows, macOS and Linux.
2323

24-
```
25-
$ cargo install ukebox
26-
```
27-
28-
Alternatively, get the source code by cloning the repo from Github.
24+
Alternatively, `ukebox` can be installed with `cargo`.
2925

3026
```
31-
$ git clone https://github.com/noeddl/ukebox
27+
$ cargo install ukebox
3228
```
3329

34-
Downloadable binaries for different platforms will be provided in upcoming releases.
35-
3630
## Usage
3731

3832
```

0 commit comments

Comments
 (0)