Skip to content

Commit db5a835

Browse files
committed
Update CHANGELOG.md, bump version to 0.3.1. Do not tag yet.
1 parent 7ef5258 commit db5a835

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## Added
11+
- The `entry` attribute macro for main can now take an `interrupt_enable`
12+
argument. The `interrupt_enable` argument will enable interrupts before
13+
calling the function with the `entry` attribute, possibly calling an an
14+
optional setup function before enabling interrupts.
15+
- Not using the `interrupt_enable` argument is backwards-compatible with [v0.3.0].
16+
- Use [`trybuild`](https://github.com/dtolnay/trybuild) to test error messages
17+
from the `pre-init`, `entry`, and `interrupt` macros.
18+
- Use [GHA](https://github.com/rust-embedded/msp430-rt/actions) for these UI
19+
tests.
20+
21+
## Fixed
22+
- [docs.rs](https://docs.rs) [metadata](https://docs.rs/about/metadata) added
23+
to `Cargo.toml` to fix documentation building [failure](https://github.com/rust-embedded/msp430-rt/issues/16).
24+
- Change instances of `msp430_macros` in docs to correct `msp430_rt_macros`
25+
import.
26+
1027
## [v0.3.0]- 2022-01-25
1128

1229
### Changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ keywords = ["msp430", "runtime", "startup"]
1212
license = "MIT OR Apache-2.0"
1313
name = "msp430-rt"
1414
repository = "https://github.com/rust-embedded/msp430-rt"
15-
version = "0.3.0"
15+
version = "0.3.1"
1616

1717
[dependencies]
1818
msp430 = "0.3.0"
1919

2020
[dependencies.msp430-rt-macros]
21-
version = "=0.3.0"
21+
version = "=0.3.1"
2222
path = "macros"
2323

2424
[features]

macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords = ["msp430", "runtime", "startup"]
77
license = "MIT OR Apache-2.0"
88
repository = "https://github.com/rust-embedded/msp430-rt"
99
name = "msp430-rt-macros"
10-
version = "0.3.0"
10+
version = "0.3.1"
1111
edition = "2018"
1212

1313
[lib]

0 commit comments

Comments
 (0)