Skip to content

Commit 4d1235b

Browse files
Prepare 0.16.0 release (#528)
* build: Bump espup version and deps * docs: Update changelog * ci: Remove unused steps and cache action
1 parent 18e708d commit 4d1235b

File tree

5 files changed

+292
-272
lines changed

5 files changed

+292
-272
lines changed

.github/workflows/cd.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ jobs:
3535
with:
3636
toolchain: stable
3737
target: ${{ matrix.job.target }}
38-
- name: Enable caching
39-
uses: Swatinem/rust-cache@v2
4038
- name: Publish (dry-run)
4139
if: matrix.job.target == 'x86_64-unknown-linux-gnu'
4240
run: cargo publish --dry-run
@@ -78,7 +76,5 @@ jobs:
7876
uses: dtolnay/rust-toolchain@v1
7977
with:
8078
toolchain: stable
81-
- name: Enable caching
82-
uses: Swatinem/rust-cache@v2
8379
- name: Cargo publish
8480
run: cargo publish --token ${{ secrets.CARGO_API_KEY }}

.github/workflows/ci.yaml

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -46,36 +46,23 @@ jobs:
4646
- command: doc
4747
args: --no-deps --document-private-items --all-features --workspace --examples
4848
steps:
49-
- name: Install dependencies
50-
if: ${{ matrix.job.os == 'ubuntu-20.04' }}
51-
run: |
52-
sudo sed -i 's/azure.archive.ubuntu.com/archive.ubuntu.com/' /etc/apt/sources.list
53-
sudo apt-get update
54-
sudo apt-get install libudev-dev
5549
- name: Checkout repository
5650
uses: actions/checkout@v5
5751
- name: Setup Rust toolchain
5852
uses: dtolnay/rust-toolchain@stable
59-
- name: Enable caching
60-
uses: Swatinem/rust-cache@v2
53+
with:
54+
components: rustfmt,clippy
6155
- name: Cargo command
6256
run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }}
6357
msrv:
6458
name: MSRV check
6559
runs-on: ubuntu-latest
6660
steps:
67-
- name: Install dependencies
68-
run: |
69-
sudo sed -i 's/azure.archive.ubuntu.com/archive.ubuntu.com/' /etc/apt/sources.list
70-
sudo apt-get update
71-
sudo apt-get install musl-tools libudev-dev
7261
- name: Checkout repository
7362
uses: actions/checkout@v5
7463
- name: Setup Rust toolchain
7564
uses: dtolnay/rust-toolchain@stable
7665
with:
7766
toolchain: 1.85.0
78-
- name: Enable caching
79-
uses: Swatinem/rust-cache@v2
8067
- name: Cargo check
8168
run: cargo check

CHANGELOG.md

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

1010
### Added
11-
- Added option to specify Crosstool-NG version, using `-c` or `--crosstools-toolchain-version`
12-
- Added an option for [NuShell](https://www.nushell.sh/) completion
13-
- Add support for LLVM esp-20.1.1_20250829 (#527)
14-
1511

1612
### Fixed
1713

1814
### Changed
19-
- Updated default GCC / Crosstools version to latest, [`esp-15.2.0_20250920`](https://github.com/espressif/crosstool-NG/releases/tag/esp-15.2.0_20250920) (#527)
20-
- `espup install -v` now accepts version strings with 1-4 parts. (#525)
2115

2216
### Removed
2317

18+
## [0.16.0] - 2025-09-26
19+
20+
### Added
21+
- Add option to specify Crosstool-NG version, using `-c` or `--crosstools-toolchain-version` (#508)
22+
- Add an option for [NuShell](https://www.nushell.sh/) completion (#513)
23+
- Add support for LLVM esp-20.1.1_20250829 (#527)
24+
25+
### Changed
26+
- Updat default GCC / Crosstools version to latest, [`esp-15.2.0_20250920`](https://github.com/espressif/crosstool-NG/releases/tag/esp-15.2.0_20250920) (#527)
27+
- `espup install -v` now accepts version strings with 1-4 parts. (#525)
28+
2429
## [0.15.1] - 2025-05-19
2530

2631
### Changed
@@ -179,7 +184,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
179184

180185
## [0.1.0] - 2022-10-07
181186

182-
[Unreleased]: https://github.com/esp-rs/espup/compare/v0.15.1...HEAD
187+
[Unreleased]: https://github.com/esp-rs/espup/compare/v0.16.0...HEAD
188+
[0.16.0]: https://github.com/esp-rs/espup/compare/v0.15.1...v0.16.0
183189
[0.15.1]: https://github.com/esp-rs/espup/compare/v0.15.0...v0.15.1
184190
[0.15.0]: https://github.com/esp-rs/espup/compare/v0.14.1...v0.15.0
185191
[0.14.1]: https://github.com/esp-rs/espup/compare/v0.14.0...v0.14.1

0 commit comments

Comments
 (0)