Skip to content

Commit a332279

Browse files
Prepare v0.12.0 release (#429)
* build: Update deps * docs: Udpate changelog * ci: Add changelog check
1 parent 8d8d412 commit a332279

File tree

4 files changed

+538
-327
lines changed

4 files changed

+538
-327
lines changed

.github/workflows/changelog.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Changelog check
2+
3+
on:
4+
pull_request:
5+
# Run on labeled/unlabeled in addition to defaults to detect
6+
# adding/removing skip-changelog labels.
7+
types: [opened, reopened, labeled, unlabeled, synchronize]
8+
9+
jobs:
10+
changelog:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout sources
15+
uses: actions/checkout@v4
16+
17+
- uses: dangoslen/changelog-enforcer@v3
18+
with:
19+
changeLogPath: CHANGELOG.md
20+
skipLabels: "skip-changelog"
21+
missingUpdateErrorMessage: "Please add a changelog entry in the CHANGELOG.md file."

CHANGELOG.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [0.12.0] - 2024-06-12
99

1010
### Added
11-
- Added support for LLVM 17
12-
13-
### Fixed
11+
- Added support for SOCKS5 proxy (#423)
1412

1513
### Changed
16-
17-
### Removed
14+
- Update LLVM version to `esp-17.0.1_20240419` (#427)
15+
- Update dependencies (#429)
1816

1917
## [0.11.0] - 2024-02-02
2018

@@ -118,7 +116,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
118116
## [0.1.0] - 2022-10-07
119117

120118

121-
[Unreleased]: https://github.com/esp-rs/espup/compare/v0.11.0...HEAD
119+
[0.12.0]: https://github.com/esp-rs/espup/compare/v0.11.0...v0.12.0
122120
[0.11.0]: https://github.com/esp-rs/espup/compare/v0.10.0...v0.11.0
123121
[0.10.0]: https://github.com/esp-rs/espup/compare/v0.9.0...v0.10.0
124122
[0.9.0]: https://github.com/esp-rs/espup/compare/v0.8.0...v0.9.0

0 commit comments

Comments
 (0)