Skip to content

Commit 7a0d827

Browse files
Prepare 0.14.1 release (#483)
* build: Bump dependencies * docs: Update changelog * feat: Update ubuntu runners * feat: Bump msrv * fix: Clippy lint
1 parent 73f972c commit 7a0d827

File tree

8 files changed

+321
-384
lines changed

8 files changed

+321
-384
lines changed

.github/workflows/audit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ env:
1919
jobs:
2020
audit:
2121
name: Security audit
22-
runs-on: ubuntu-20.04
22+
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout repository
2525
uses: actions/checkout@v4

.github/workflows/cd.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
job:
1919
- os: macos-latest
2020
target: x86_64-apple-darwin
21-
- os: ubuntu-20.04
21+
- os: ubuntu-22.04
2222
target: x86_64-unknown-linux-gnu
2323
- os: windows-latest
2424
target: x86_64-pc-windows-msvc
2525
binary-postfix: ".exe"
26-
- os: ubuntu-20.04
26+
- os: ubuntu-22.04
2727
target: aarch64-unknown-linux-gnu
2828
- os: macos-latest
2929
target: aarch64-apple-darwin
@@ -70,7 +70,7 @@ jobs:
7070
publish-cratesio:
7171
name: Publishing to Crates.io
7272
needs: publish-release
73-
runs-on: ubuntu-20.04
73+
runs-on: ubuntu-22.04
7474
steps:
7575
- name: Checkout repository
7676
uses: actions/checkout@v4

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
job:
3232
- os: macos-latest
3333
os-name: macos
34-
- os: ubuntu-20.04
34+
- os: ubuntu-22.04
3535
os-name: linux
3636
- os: windows-latest
3737
os-name: windows
@@ -62,7 +62,7 @@ jobs:
6262
run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }}
6363
msrv:
6464
name: MSRV check
65-
runs-on: ubuntu-20.04
65+
runs-on: ubuntu-latest
6666
steps:
6767
- name: Install dependencies
6868
run: |
@@ -74,7 +74,7 @@ jobs:
7474
- name: Setup Rust toolchain
7575
uses: dtolnay/rust-toolchain@stable
7676
with:
77-
toolchain: 1.74.1
77+
toolchain: 1.81.0
7878
- name: Enable caching
7979
uses: Swatinem/rust-cache@v2
8080
- name: Cargo check

CHANGELOG.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
## [Unreleased]
99

1010
### Added
11-
- Add support for LLVM esp-19.1.2_20250225 (#477, #479)
1211

1312
### Fixed
14-
- Return an error if GET request fails (#471)
15-
- Fix RISC-V install fail (#480)
1613

1714
### Changed
1815

1916
### Removed
2017

18+
19+
## [0.14.1] - 2025-03-04
20+
21+
### Added
22+
- Add support for LLVM esp-19.1.2_20250225 (#477, #479)
23+
24+
### Fixed
25+
- Return an error if GET request fails (#471)
26+
- Fix RISC-V installation error (#480)
27+
2128
## [0.14.0] - 2024-12-17
2229

2330
### Added
@@ -156,7 +163,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
156163

157164
## [0.1.0] - 2022-10-07
158165

159-
[Unreleased]: https://github.com/esp-rs/espup/compare/v0.14.0...HEAD
166+
[Unreleased]: https://github.com/esp-rs/espup/compare/v0.14.1...HEAD
167+
[0.14.1]: https://github.com/esp-rs/espup/compare/v0.14.0...v0.14.1
160168
[0.14.0]: https://github.com/esp-rs/espup/compare/v0.13.0...v0.14.0
161169
[0.13.0]: https://github.com/esp-rs/espup/compare/v0.12.2...v0.13.0
162170
[0.12.2]: https://github.com/esp-rs/espup/compare/v0.12.1...v0.12.2

0 commit comments

Comments
 (0)