Skip to content
This repository was archived by the owner on Nov 11, 2020. It is now read-only.

Commit dd6946e

Browse files
bors[bot]japaric
andcommitted
Merge #8
8: remove `panic_handler` feature gate r=korken89 a=japaric This crate will compile on 1.30-beta and on stable 1.30 when they are released. r? @rust-embedded/cortex-m (anyone) Co-authored-by: Jorge Aparicio <jorge@japaric.io>
2 parents b56162e + ea74dd5 commit dd6946e

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.5.0] - 2018-09-10
11+
12+
- [breaking-change] The `panic_handler` feature gate has been removed. This
13+
crate will compile on 1.30-beta and on stable 1.30 when they are released.
14+
1015
## [v0.4.0] - 2018-09-03
1116

1217
### Changed
@@ -35,7 +40,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3540

3641
Initial release
3742

38-
[Unreleased]: https://github.com/rust-embedded/panic-semihosting/compare/v0.4.0...HEAD
43+
[Unreleased]: https://github.com/rust-embedded/panic-semihosting/compare/v0.5.0...HEAD
44+
[v0.5.0]: https://github.com/rust-embedded/panic-semihosting/compare/v0.4.0...v0.5.0
3945
[v0.4.0]: https://github.com/rust-embedded/panic-semihosting/compare/v0.3.0...v0.4.0
4046
[v0.3.0]: https://github.com/rust-embedded/panic-semihosting/compare/v0.2.0...v0.3.0
4147
[v0.2.0]: https://github.com/rust-embedded/panic-semihosting/compare/v0.1.0...v0.2.0

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ authors = ["Jorge Aparicio <jorge@japaric.io>"]
33
categories = ["no-std"]
44
description = "Report panic messages to the host stderr using semihosting"
55
documentation = "https://rust-embedded.github.io/panic-semihosting/panic_semihosting"
6-
keywords = ["panic-impl", "panic", "semihosting"]
6+
keywords = ["panic-handler", "panic-impl", "panic", "semihosting"]
77
license = "MIT OR Apache-2.0"
88
name = "panic-semihosting"
99
repository = "https://github.com/rust-embedded/panic-semihosting"
10-
version = "0.4.0"
10+
version = "0.5.0"
1111

1212
[dependencies]
1313
cortex-m = "0.5.6"

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
4949
#![deny(missing_docs)]
5050
#![deny(warnings)]
51-
#![feature(panic_handler)]
5251
#![no_std]
5352

5453
extern crate cortex_m;

0 commit comments

Comments
 (0)