Skip to content

Commit

Permalink
Prepare v0.2.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ashthespy committed Jun 4, 2021
1 parent cd96399 commit 769ce77
Show file tree
Hide file tree
Showing 4 changed files with 850 additions and 724 deletions.
24 changes: 16 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,16 @@ jobs:
- run:
name: Compile
command: |
cargo build --verbose
/build/debug/vollibrespot --version
/build/debug/vollibrespot --version > version
cargo build --release --verbose
/build/release/vollibrespot --version
/build/release/vollibrespot --version > version
tar czf vollibrespot-x86_64.tar.xz \
-C /build/release/ vollibrespot
- persist_to_workspace:
root: .
paths: version
paths:
- version
- '*.tar*'
- save_cache:
key: cargo-cache-{{ .Environment.cache_ver }}
paths:
Expand All @@ -50,7 +54,8 @@ jobs:
destination: vollibrespot-armv7l.tar.xz
- persist_to_workspace:
root: .
paths: '*.tar*'
paths:
- '*.tar*'
- save_cache:
key: cargo-build-armv7-unknown-linux-gnueabihf-{{ .Environment.cache_ver }}
paths:
Expand All @@ -75,7 +80,8 @@ jobs:
destination: vollibrespot-armv6l.tar.xz
- persist_to_workspace:
root: .
paths: '*.tar*'
paths:
- '*.tar*'
- save_cache:
key: cargo-build-arm-unknown-linux-gnueabihf-{{ .Environment.cache_ver }}
paths:
Expand All @@ -100,7 +106,8 @@ jobs:
destination: vollibrespot-aarch64.tar.xz
- persist_to_workspace:
root: .
paths: '*.tar*'
paths:
- '*.tar*'
- save_cache:
key: cargo-build-aarch64-unknown-linux-gnu-{{ .Environment.cache_ver }}
paths:
Expand All @@ -126,7 +133,8 @@ jobs:
destination: vollibrespot-i686.tar.xz
- persist_to_workspace:
root: .
paths: '*.tar*'
paths:
- '*.tar*'
- save_cache:
key: cargo-build-i686-unknown-linux-gnu-{{ .Environment.cache_ver }}
paths:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
<!--
### Changed
- -->
## [0.2.3] - 2021-06-04
- Add `x86_64` to CI
- Bump dependencies

## [0.2.2] - 2020-10-07
- Fix Android/iOS track skipping display issues
- Set an explicit period size to reduce CUP load
Expand Down
Loading

0 comments on commit 769ce77

Please sign in to comment.