File tree Expand file tree Collapse file tree 5 files changed +21
-31
lines changed Expand file tree Collapse file tree 5 files changed +21
-31
lines changed Original file line number Diff line number Diff line change 22 pull_request : # Run CI for PRs on any branch
33 merge_group : # Run CI for the GitHub merge queue
44 workflow_dispatch : # Run CI when manually requested
5+ schedule :
6+ # Run every week at 8am UTC Saturday
7+ - cron : ' 0 8 * * SAT'
58
69name : Continuous integration
710
2730 - run : cargo check --target=${{ matrix.target }} --example global_alloc
2831 - if : ${{ matrix.toolchain == 'nightly' }}
2932 run : cargo check --target=${{ matrix.target }} --examples --all-features
33+ - uses : imjohnbo/issue-bot@v3
34+ if : |
35+ failure()
36+ && github.event_name == 'schedule'
37+ with :
38+ title : CI Failure
39+ labels : ci
40+ body : |
41+ Scheduled CI run failed. Details:
42+ https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
43+ env :
44+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3045
3146 test :
3247 runs-on : ubuntu-latest
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
66and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
77
8- ## [ Unreleased ]
8+ ## [ v0.5.1 ] - 2023-11-04
99
1010### Added
1111
@@ -120,7 +120,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
120120
121121- Initial version of the allocator
122122
123- [ Unreleased ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.5.0...HEAD
123+ [ Unreleased ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.5.1...HEAD
124+ [ v0.5.1 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.5.0...v0.5.1
124125[ v0.5.0 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.4.3...v0.5.0
125126[ v0.4.3 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.4.2...v0.4.3
126127[ v0.4.2 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.4.1...v0.4.2
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ keywords = [
2121]
2222license = " MIT OR Apache-2.0"
2323name = " embedded-alloc"
24- version = " 0.5.0 "
24+ version = " 0.5.1 "
2525
2626[features ]
2727default = [" llff" , " tlsf" ]
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ mod llff {
2323 }
2424
2525 impl Heap {
26- /// Crate a new UNINITIALIZED heap allocator
26+ /// Create a new UNINITIALIZED heap allocator
2727 ///
2828 /// You must initialize this heap using the
2929 /// [`init`](Self::init) method before using the allocator.
@@ -147,7 +147,7 @@ mod tlsf {
147147 }
148148
149149 impl Heap {
150- /// Crate a new UNINITIALIZED heap allocator
150+ /// Create a new UNINITIALIZED heap allocator
151151 ///
152152 /// You must initialize this heap using the
153153 /// [`init`](Self::init) method before using the allocator.
You can’t perform that action at this time.
0 commit comments