Skip to content

Commit 865b585

Browse files
committed
Merge branch 'release/0.14.1'
2 parents 6420333 + bad323e commit 865b585

File tree

11 files changed

+236
-309
lines changed

11 files changed

+236
-309
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333

3434
cross_build:
3535
strategy:
36+
max-parallel: 8
3637
matrix:
3738
target:
3839
- aarch64-unknown-linux-musl
@@ -42,6 +43,7 @@ jobs:
4243
- armv5te-unknown-linux-musleabi
4344
- armv7-linux-androideabi
4445
- armv7-unknown-linux-musleabihf
46+
- armv7-unknown-linux-musleabi
4547
- i586-unknown-linux-musl
4648
- i686-linux-android
4749
- i686-unknown-linux-musl
@@ -52,8 +54,8 @@ jobs:
5254
steps:
5355
- uses: actions/checkout@v2
5456
- name: Install cross
55-
run: curl -L https://github.com/rust-embedded/cross/releases/download/v0.2.1/cross-v0.2.1-x86_64-unknown-linux-gnu.tar.gz | tar xzf -
56-
- run: ./cross build --target=${{ matrix.target }} --release --locked
57+
run: cd /tmp && curl -L https://github.com/cross-rs/cross/releases/download/v0.2.2/cross-x86_64-unknown-linux-musl.tar.gz | tar xzf -
58+
- run: /tmp/cross build --target=${{ matrix.target }} --release --locked
5759
- name: Archive binary
5860
run: |
5961
set -eu

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55

66
## [Unreleased]
77

8+
## [0.14.1] - 2022-09-06
9+
### Changed
10+
* Update dependencies
11+
* (Docker) Use Rust version 1.63.0 in build
12+
* Allow Web browser to detect X-Piping feature in preflight request
13+
14+
### Added
15+
* Add armv7-unknown-linux-musleabi target
16+
17+
### Fixed
18+
* Fix hot reload not to panic
19+
820
## [0.14.0] - 2022-06-25
921
### Changed
1022
* Update dependencies
@@ -232,7 +244,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
232244
### Added
233245
* Implement basic Piping Server
234246

235-
[Unreleased]: https://github.com/nwtgck/piping-server-rust/compare/v0.14.0...HEAD
247+
[Unreleased]: https://github.com/nwtgck/piping-server-rust/compare/v0.14.1...HEAD
248+
[0.14.1]: https://github.com/nwtgck/piping-server-rust/compare/v0.14.0...v0.14.1
236249
[0.14.0]: https://github.com/nwtgck/piping-server-rust/compare/v0.13.0...v0.14.0
237250
[0.13.0]: https://github.com/nwtgck/piping-server-rust/compare/v0.12.1...v0.13.0
238251
[0.12.1]: https://github.com/nwtgck/piping-server-rust/compare/v0.12.0...v0.12.1

0 commit comments

Comments
 (0)