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 2
2
pull_request : # Run CI for PRs on any branch
3
3
merge_group : # Run CI for the GitHub merge queue
4
4
workflow_dispatch : # Run CI when manually requested
5
+ schedule :
6
+ # Run every week at 8am UTC Saturday
7
+ - cron : ' 0 8 * * SAT'
5
8
6
9
name : Continuous integration
7
10
27
30
- run : cargo check --target=${{ matrix.target }} --example global_alloc
28
31
- if : ${{ matrix.toolchain == 'nightly' }}
29
32
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 }}
30
45
31
46
test :
32
47
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.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
7
7
8
- ## [ Unreleased ]
8
+ ## [ v0.5.1 ] - 2023-11-04
9
9
10
10
### Added
11
11
@@ -120,7 +120,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
120
120
121
121
- Initial version of the allocator
122
122
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
124
125
[ v0.5.0 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.4.3...v0.5.0
125
126
[ v0.4.3 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.4.2...v0.4.3
126
127
[ 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 = [
21
21
]
22
22
license = " MIT OR Apache-2.0"
23
23
name = " embedded-alloc"
24
- version = " 0.5.0 "
24
+ version = " 0.5.1 "
25
25
26
26
[features ]
27
27
default = [" llff" , " tlsf" ]
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ mod llff {
23
23
}
24
24
25
25
impl Heap {
26
- /// Crate a new UNINITIALIZED heap allocator
26
+ /// Create a new UNINITIALIZED heap allocator
27
27
///
28
28
/// You must initialize this heap using the
29
29
/// [`init`](Self::init) method before using the allocator.
@@ -147,7 +147,7 @@ mod tlsf {
147
147
}
148
148
149
149
impl Heap {
150
- /// Crate a new UNINITIALIZED heap allocator
150
+ /// Create a new UNINITIALIZED heap allocator
151
151
///
152
152
/// You must initialize this heap using the
153
153
/// [`init`](Self::init) method before using the allocator.
You can’t perform that action at this time.
0 commit comments