Skip to content

Commit c0dc9c1

Browse files
committed
[release] Update changelog for 2022q4 release
1 parent a2e2251 commit c0dc9c1

File tree

4 files changed

+155
-2
lines changed

4 files changed

+155
-2
lines changed

.mailmap

+3-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ Henrik Hose <[email protected]>
3232
Jacob Schultz Andersen <[email protected]>
3333
Jakob Riepler <[email protected]>
3434
Jeff McBride <[email protected]>
35-
Julia Gutheil <[email protected]>
3635
Jonas Kazem Andersen <[email protected]>
36+
Julia Gutheil <[email protected]>
3737
Jörg Hoffmann <[email protected]>
3838
Kaelin Laundry <[email protected]>
3939
Kevin Läufer <[email protected]>
@@ -64,14 +64,15 @@ Pavel Pletenev <[email protected]>
6464
Philipp Graf <[email protected]>
6565
Raphael Lehmann <[email protected]>
6666
67-
Sarah Vilete <[email protected]>
6867
Rasmus Kleist <[email protected]>
68+
Sarah Vilete <[email protected]>
6969
Sascha Schade <[email protected]>
7070
7171
Sascha Schade <[email protected]> <strongly-typed@nan>
7272
7373
Sebastian Birke <[email protected]>
7474
Sebastian Tibor Bakonyvari <[email protected]>
75+
Sergey Pluzhnikov <[email protected]>
7576
Sergiy Yevtushenko <[email protected]>
7677
Steven Macías <[email protected]>
7778
Tarik TIRE <[email protected]>

CHANGELOG.md

+79
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,80 @@ pay attention to. Medium impact changes are also worth looking at.
5252

5353
<!--releases-->
5454

55+
## 2023-01-01: 2022q4 release
56+
57+
This release covers everything from 2022-10-01 and has been tested with avr-gcc
58+
v10.2.0 from Upstream and arm-none-eabi-gcc 10.3-2022.07 from Arm.
59+
60+
Breaking changes:
61+
62+
- None.
63+
64+
Features:
65+
66+
- Basic ADC support for SAMx7x devices.
67+
68+
Integrated Projects:
69+
70+
- printf upgraded to v6.1.0.
71+
- CMSIS-DSP upgraded to v1.14.2.
72+
- TinyUSB upgraded to v0.14.0.
73+
- FreeRTOS upgraded to 202212.
74+
- FatFS upgraded to v0.15.
75+
- LVGL upgraded to v8.3.4.
76+
- NanoPB upgraded to v0.4.7.
77+
- ETL upgraded to v20.35.6.
78+
- STM32L5 headers upgraded to v1.12.0.
79+
- STM32H7 headers upgraded to v1.10.3.
80+
81+
Fixes:
82+
83+
- STM32G4 ADC channel mapping.
84+
- Initialize frame buffer memory in MonochromeGraphicDisplay.
85+
- Only configure BDTR register for timers with complementary PWM.
86+
- Fix SAMx7x b-variant USART defines.
87+
88+
New development boards:
89+
90+
- None.
91+
92+
New device drivers:
93+
94+
- None.
95+
96+
Known bugs:
97+
98+
- C++20 is not fully implemented by GCC10 yet, however modm does not use all
99+
features yet anyways. See [#326][].
100+
- STM32F7: D-Cache not enabled by default. See [#485][].
101+
- `lbuild build` and `lbuild clean` do not remove all previously generated files
102+
when the configuration changes. See [#285][].
103+
- Generating modm on Windows creates paths with `\` that are not compatible with
104+
Unix. See [#310][].
105+
- `arm-none-eabi-gdb` TUI and GDBGUI interfaces are not supported on Windows.
106+
See [#591][].
107+
108+
Many thanks to all our contributors.
109+
A special shoutout to first timers 🎉:
110+
111+
- Christopher Durand ([@chris-durand][])
112+
- Niklas Hauser ([@salkinium][])
113+
- Raphael Lehmann ([@rleh][])
114+
- Sergey Pluzhnikov ([@ser-plu][]) 🎉
115+
116+
PR [#937][] -> [2022q4][].
117+
118+
<details>
119+
<summary>Detailed changelog</summary>
120+
121+
#### 2022-12-04: Add basic SAMx7x ADC driver
122+
123+
PR [#935][] -> [7330500][].
124+
Tested in hardware by [@chris-durand][].
125+
126+
</details>
127+
128+
55129
## 2022-10-01: 2022q3 release
56130

57131
This release covers everything from 2022-07-01 and has been tested with avr-gcc
@@ -2186,6 +2260,7 @@ Please note that contributions from xpcc were continuously ported to modm.
21862260
[2022q1]: https://github.com/modm-io/modm/releases/tag/2022q1
21872261
[2022q2]: https://github.com/modm-io/modm/releases/tag/2022q2
21882262
[2022q3]: https://github.com/modm-io/modm/releases/tag/2022q3
2263+
[2022q4]: https://github.com/modm-io/modm/releases/tag/2022q4
21892264

21902265
[@19joho66]: https://github.com/19joho66
21912266
[@ASMfreaK]: https://github.com/ASMfreaK
@@ -2231,6 +2306,7 @@ Please note that contributions from xpcc were continuously ported to modm.
22312306
[@salkinium]: https://github.com/salkinium
22322307
[@sarahvilete]: https://github.com/sarahvilete
22332308
[@se-bi]: https://github.com/se-bi
2309+
[@ser-plu]: https://github.com/ser-plu
22342310
[@strongly-typed]: https://github.com/strongly-typed
22352311
[@tarush53]: https://github.com/tarush53
22362312
[@twasilczyk]: https://github.com/twasilczyk
@@ -2482,6 +2558,8 @@ Please note that contributions from xpcc were continuously ported to modm.
24822558
[#900]: https://github.com/modm-io/modm/pull/900
24832559
[#902]: https://github.com/modm-io/modm/pull/902
24842560
[#917]: https://github.com/modm-io/modm/pull/917
2561+
[#935]: https://github.com/modm-io/modm/pull/935
2562+
[#937]: https://github.com/modm-io/modm/pull/937
24852563
[#96]: https://github.com/modm-io/modm/pull/96
24862564

24872565
[00471ca]: https://github.com/modm-io/modm/commit/00471ca
@@ -2558,6 +2636,7 @@ Please note that contributions from xpcc were continuously ported to modm.
25582636
[6e7c12f]: https://github.com/modm-io/modm/commit/6e7c12f
25592637
[6e9f000]: https://github.com/modm-io/modm/commit/6e9f000
25602638
[72d5ae9]: https://github.com/modm-io/modm/commit/72d5ae9
2639+
[7330500]: https://github.com/modm-io/modm/commit/7330500
25612640
[77ae899]: https://github.com/modm-io/modm/commit/77ae899
25622641
[78d18f6]: https://github.com/modm-io/modm/commit/78d18f6
25632642
[7b5827f]: https://github.com/modm-io/modm/commit/7b5827f

docs/release/2022q4.md

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
## 2023-01-01: 2022q4 release
2+
3+
This release covers everything from 2022-10-01 and has been tested with avr-gcc
4+
v10.2.0 from Upstream and arm-none-eabi-gcc 10.3-2022.07 from Arm.
5+
6+
Breaking changes:
7+
8+
- None.
9+
10+
Features:
11+
12+
- Basic ADC support for SAMx7x devices.
13+
14+
Integrated Projects:
15+
16+
- printf upgraded to v6.1.0.
17+
- CMSIS-DSP upgraded to v1.14.2.
18+
- TinyUSB upgraded to v0.14.0.
19+
- FreeRTOS upgraded to 202212.
20+
- FatFS upgraded to v0.15.
21+
- LVGL upgraded to v8.3.4.
22+
- NanoPB upgraded to v0.4.7.
23+
- ETL upgraded to v20.35.6.
24+
- STM32L5 headers upgraded to v1.12.0.
25+
- STM32H7 headers upgraded to v1.10.3.
26+
27+
Fixes:
28+
29+
- STM32G4 ADC channel mapping.
30+
- Initialize frame buffer memory in MonochromeGraphicDisplay.
31+
- Only configure BDTR register for timers with complementary PWM.
32+
- Fix SAMx7x b-variant USART defines.
33+
34+
New development boards:
35+
36+
- None.
37+
38+
New device drivers:
39+
40+
- None.
41+
42+
Known bugs:
43+
44+
- C++20 is not fully implemented by GCC10 yet, however modm does not use all
45+
features yet anyways. See #326.
46+
- STM32F7: D-Cache not enabled by default. See #485.
47+
- `lbuild build` and `lbuild clean` do not remove all previously generated files
48+
when the configuration changes. See #285.
49+
- Generating modm on Windows creates paths with `\` that are not compatible with
50+
Unix. See #310.
51+
- `arm-none-eabi-gdb` TUI and GDBGUI interfaces are not supported on Windows.
52+
See #591.
53+
54+
Many thanks to all our contributors.
55+
A special shoutout to first timers 🎉:
56+
57+
- Christopher Durand (@chris-durand)
58+
- Niklas Hauser (@salkinium)
59+
- Raphael Lehmann (@rleh)
60+
- Sergey Pluzhnikov (@ser-plu) 🎉
61+
62+
PR #937 -> 2022q4.
63+
64+
<details>
65+
<summary>Detailed changelog</summary>
66+
67+
#### 2022-12-04: Add basic SAMx7x ADC driver
68+
69+
PR #935 -> 7330500.
70+
Tested in hardware by @chris-durand.
71+
72+
</details>

tools/scripts/authors.py

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
"Sascha Schade": "strongly-typed",
7373
"Sebastian Birke": "se-bi",
7474
"Sebastian Tibor Bakonyvari": "twast92",
75+
"Sergey Pluzhnikov": "ser-plu",
7576
"Sergiy Yevtushenko": "siy",
7677
"Steven Macías": "StevenMacias",
7778
"Tarik TIRE": "7Kronos",

0 commit comments

Comments
 (0)