Skip to content

Commit

Permalink
Release 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
noeddl committed Jun 15, 2022
1 parent e2fce7b commit 04c5465
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Package
shell: bash
run: |
strip --target ${{ matrix.target }}
strip target/${{ matrix.target }}/release/${{ env.PROJECT_NAME }}
cd target/${{ matrix.target }}/release
tar czvf ../../../${{ env.PROJECT_NAME }}-${{ github.ref_name }}-${{ matrix.target }}.tar.gz ${{ env.PROJECT_NAME }}
cd -
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
- name: Package
shell: bash
run: |
strip --target ${{ matrix.target }}
strip target/${{ matrix.target }}/release/${{ env.PROJECT_NAME }}.exe
cd target/${{ matrix.target }}/release
7z a ../../../${{ env.PROJECT_NAME }}-${{ github.ref_name }}-${{ matrix.target }}.zip ${{ env.PROJECT_NAME }}.exe
cd -
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.9.1] - 2022-06-15

* Set up Github Actions for continuous integration and automatic compilation of binaries for different platforms when making new releases.
* Update dependencies and remove vulnerability from regex 1.5.4.
* Switch from structopt to clap.
* Increase MSRV to 1.56.0 to allow for dependencies using Edition 2021.

## [0.9.0] - 2021-12-05

* Add more chord types and symbols ([#35](https://github.com/noeddl/ukebox/issues/35)).
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ukebox"
version = "0.9.0"
version = "0.9.1"
authors = ["Anett Seeker"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
14 changes: 4 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

Expand All @@ -19,20 +19,14 @@

## Installation

`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`.
Archives of precompiled binaries for each [release](https://github.com/noeddl/ukebox/releases) of `ukebox` are available for Windows, macOS and Linux.

```
$ cargo install ukebox
```

Alternatively, get the source code by cloning the repo from Github.
Alternatively, `ukebox` can be installed with `cargo`.

```
$ git clone https://github.com/noeddl/ukebox
$ cargo install ukebox
```

Downloadable binaries for different platforms will be provided in upcoming releases.

## Usage

```
Expand Down

0 comments on commit 04c5465

Please sign in to comment.