Skip to content

Commit 99d987a

Browse files
committed
v0.11.0
1 parent c1d6c52 commit 99d987a

File tree

3 files changed

+55
-3
lines changed

3 files changed

+55
-3
lines changed

CHANGELOG.md

Lines changed: 53 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,49 @@
22

33
## [Unreleased]
44

5+
## [v0.11.0] 2020-04-25
6+
7+
Family-specific:
8+
9+
* F0:
10+
* Fix width of TIM1 and TIM14-17 registers (now 16 bit) (#363)
11+
* F3:
12+
* Flash documentation (#368)
13+
* Fix duplicate FPU interrupts (#357)
14+
* F4:
15+
* Add missing interrupts (#360, #362, #341)
16+
* Fix duplicate FPU interrupts (#357)
17+
* Fix FSMC peripheral base address (#354)
18+
* RNG documentation (#348)
19+
* Links fixed in device table (#343)
20+
* Fix DMA CR.CHSEL width (#339)
21+
* Fix build error on Windows (#369)
22+
* F7:
23+
* Fix DMA CR.CHSEL width (#339)
24+
* H7:
25+
* HDMICRC renamed to CRC (#367)
26+
* Add SYSCFG_PWRCR register (#366)
27+
* Apply flash bank grouping to all parts (#364)
28+
* AXI documentation (#359)
29+
* RAMECC registers and documentation (#353)
30+
* SAI documentation and fixes (#347)
31+
* L4:
32+
* Fix duplicate FPU interrupts (#357)
33+
* RCC field name fixes (#350)
34+
* G4:
35+
* ADC documentation (#338)
36+
37+
Common:
38+
* Fixed typo in I2C `OA1EN` `Disabled` variant name for many devices (#365)
39+
* Hopefully fixed docs.rs building (#355)
40+
* Generated crate directories no longer stored in git (#346)
41+
42+
Thanks to:
43+
44+
[@Sh3Rm4n] [@richardeoin] [@hoachin] [@BryanKadzban] [@richardeoin]
45+
[@aurabindo] [@MarcoIeni] [@therealprof] [@ryan-summers] [@dirk-dms]
46+
[@aurelj] [@tachiniererin] [@torkeldanielsson]
47+
548
## [v0.10.0] 2020-02-13
649

750
Family-specific:
@@ -322,7 +365,8 @@ work in this release!
322365
* Fix nvicPrioBits being incorrect in many STM32s (de117ef)
323366
* Add support for specifying interrupts and modifying CPU node
324367

325-
[Unreleased]: https://github.com/stm32-rs/stm32-rs/compare/v0.10.0...HEAD
368+
[Unreleased]: https://github.com/stm32-rs/stm32-rs/compare/v0.11.0...HEAD
369+
[v0.11.0]: https://github.com/stm32-rs/stm32-rs/compare/v0.10.0...v0.11.0
326370
[v0.10.0]: https://github.com/stm32-rs/stm32-rs/compare/v0.9.0...v0.10.0
327371
[v0.9.0]: https://github.com/stm32-rs/stm32-rs/compare/v0.8.0...v0.9.0
328372
[v0.8.0]: https://github.com/stm32-rs/stm32-rs/compare/v0.7.0...v0.8.0
@@ -342,14 +386,18 @@ work in this release!
342386
[@albru123]: https://github.com/albru123
343387
[@arkorobotics]: https://github.com/arkorobotics
344388
[@astro]: https://github.com/astro
389+
[@aurabindo]: https://github.com/aurabindo
345390
[@aurelj]: https://github.com/aurelj
346391
[@birkenfeld]: https://github.com/birkenfeld
392+
[@BryanKadzban]: https://github.com/BryanKadzban
347393
[@burrbull]: https://github.com/burrbull
394+
[@dirk-dms]: https://github.com/dirk-dms
348395
[@disasm]: https://github.com/disasm
349396
[@dotcypress]: https://github.com/dotcypress
350397
[@ehntoo]: https://github.com/ehntoo
351398
[@HarkonenBade]: https://github.com/HarkonenBade
352399
[@hnez]: https://github.com/hnez
400+
[@hoachin]: https://github.com/hoachin
353401
[@jessebraham]: https://github.com/jessebraham
354402
[@jkristell]: https://github.com/jkristell
355403
[@jonas-schievink]: https://github.com/jonas-schievink
@@ -360,6 +408,7 @@ work in this release!
360408
[@lochsh]: https://github.com/lochsh
361409
[@lynaghk]: https://github.com/lynaghk
362410
[@mabezdev]: https://github.com/mabezdev
411+
[@MarcoIeni]: https://github.com/MarcoIeni
363412
[@mathk]: https://github.com/mathk
364413
[@MattCatz]: https://github.com/MattCatz
365414
[@nickray]: https://github.com/nickray
@@ -368,9 +417,12 @@ work in this release!
368417
[@rfuest]: https://github.com/rfuest
369418
[@richard7770]: https://github.com/richard7770
370419
[@richardeoin]: https://github.com/richardeoin
420+
[@ryan-summers]: https://github.com/ryan-summers
371421
[@samcrow]: https://github.com/samcrow
372422
[@Sh3Rm4n]: https://github.com/Sh3Rm4n
373423
[@solderjs]: https://github.com/solderjs
424+
[@tachiniererin]: https://github.com/tachiniererin
374425
[@therealprof]: https://github.com/therealprof
375426
[@thinxer]: https://github.com/thinxer
427+
[@torkeldanielsson]: https://github.com/torkeldanielsson
376428
[@x37v]: https://github.com/x37v

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ to drill down into each field on each register on each peripheral.
4444
In your own project's `Cargo.toml`:
4545
```toml
4646
[dependencies.stm32f4]
47-
version = "0.10.0"
47+
version = "0.11.0"
4848
features = ["stm32f405", "rt"]
4949
```
5050

scripts/makecrates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import argparse
1616
import yaml
1717

18-
VERSION = "0.10.0"
18+
VERSION = "0.11.0"
1919
SVD2RUST_VERSION = "0.17.0"
2020

2121
CRATE_DOC_FEATURES = {

0 commit comments

Comments
 (0)