Skip to content

Commit c861cd5

Browse files
Merge pull request #173 from jonas-schievink/changelog
Add a Changelog (+ a few Cargo.toml fixes)
2 parents 0a94479 + c94fedf commit c861cd5

File tree

9 files changed

+42
-2
lines changed

9 files changed

+42
-2
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Changelog
2+
3+
## Unreleased
4+
5+
### New Features
6+
7+
- Add support for Nordic nRF52833 ([#148]).
8+
- Add a driver for the AES-ECB peripheral ([#145]).
9+
- Add a driver for the AES-CCM peripheral ([#154]).
10+
- Add PPI support and example ([#162]).
11+
- Add methods for task clear and trigger overflow to the RTC ([#168]).
12+
- Add a driver for the GPIOTE peripheral ([#167]).
13+
14+
### Fixes
15+
16+
- Fix incorrect logic in `transfer_split_uneven` ([#159]).
17+
- Twim: Implicitly copy buffer into RAM if needed when using embedded hal traits ([#165]).
18+
- Fix Twim hangs on address NACK ([#166]).
19+
20+
### Breaking Changes
21+
22+
- Made GPIO pin fields private and reduced their memory footprint ([#155]).
23+
- Stop reexporting the PAC under `target` ([#172]).
24+
25+
[#148]: https://github.com/nrf-rs/nrf-hal/pull/148
26+
[#145]: https://github.com/nrf-rs/nrf-hal/pull/145
27+
[#154]: https://github.com/nrf-rs/nrf-hal/pull/154
28+
[#155]: https://github.com/nrf-rs/nrf-hal/pull/155
29+
[#159]: https://github.com/nrf-rs/nrf-hal/pull/159
30+
[#162]: https://github.com/nrf-rs/nrf-hal/pull/162
31+
[#165]: https://github.com/nrf-rs/nrf-hal/pull/165
32+
[#166]: https://github.com/nrf-rs/nrf-hal/pull/166
33+
[#168]: https://github.com/nrf-rs/nrf-hal/pull/168
34+
[#167]: https://github.com/nrf-rs/nrf-hal/pull/167
35+
[#172]: https://github.com/nrf-rs/nrf-hal/pull/172

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ lto = false
2929
debug = true
3030
lto = true
3131
opt-level = "s"
32-

examples/ccm-demo/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "ccm-demo"
33
version = "0.0.1"
44
edition = "2018"
55
authors = [ "Thales Fragoso <[email protected]>"]
6+
publish = false
67

78
[dependencies]
89
cortex-m = "0.6.2"

examples/ecb-demo/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "ecb-demo"
33
version = "0.0.1"
44
edition = "2018"
55
authors = [ "Thales Fragoso <[email protected]>"]
6+
publish = false
67

78
[dependencies]
89
cortex-m = "0.6.2"

examples/ppi-demo/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "ppi-demo"
33
version = "0.0.1"
44
edition = "2018"
55
authors = [ "Thales Fragoso <[email protected]>"]
6+
publish = false
67

78
[dependencies]
89
cortex-m = "0.6.2"

examples/rtfm-demo/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "rtfm-demo"
33
version = "0.1.0"
44
authors = ["James Munns <[email protected]>"]
55
edition = "2018"
6+
publish = false
67

78
[dependencies]
89
cortex-m-rtfm = "0.4.3"

examples/spi-demo/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "spi-demo"
33
version = "0.1.0"
44
authors = ["Fredrik Simonsson <[email protected]>"]
55
edition = "2018"
6+
publish = false
67

78
[dependencies]
89
cortex-m-rt = "0.6.5"

examples/twi-ssd1306/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ authors = [
66
"Ruben Paz <[email protected]>",
77
]
88
edition = "2018"
9+
publish = false
910

1011
[dependencies]
1112
cortex-m-rt = "0.6.12"

nrf51-hal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "nrf51-hal"
33
version = "0.10.0"
44
edition = "2018"
55
description = "HAL for nRF51 microcontrollers"
6-
repository = "https://github.com/nrf-rs/nrf52-hal"
6+
repository = "https://github.com/nrf-rs/nrf-hal"
77
authors = [
88
"James Munns <[email protected]>",
99
"Hanno Braun <[email protected]>",

0 commit comments

Comments
 (0)