Skip to content

Commit 5e01916

Browse files
committed
Prepare for 0.25.0 release
Signed-off-by: deadprogram <[email protected]>
1 parent 95f0ca8 commit 5e01916

File tree

3 files changed

+81
-2
lines changed

3 files changed

+81
-2
lines changed

CHANGELOG.md

+79
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,81 @@
1+
0.25.0
2+
---
3+
4+
- **core**
5+
- add Sensor interface and Measurement type
6+
- **delay**
7+
- add new package for cycle-accurate delays
8+
9+
- **new devices**
10+
- **AS560x**
11+
- Add support for ams AS560x on-axis magnetic rotary position sensors
12+
- **onewire**
13+
- first implementation of 1-wire protocol (#505)
14+
- **mpu6886**
15+
- initial implementation
16+
- **ttp229**
17+
- initial support for ttp229 (BSF)
18+
19+
- **enhancements**
20+
- **gps**
21+
- make the date available in addition to the time (#532)
22+
- **i2csoft**
23+
- use cycle counting for delays
24+
- **ili9341**
25+
- add EnableTEOutput to be able to sync drawing with VSYNC
26+
- add sleep mode
27+
- unify rotation support
28+
- **st7735**
29+
- add DrawRGBBitmap8 method to draw raw RGB565 buffers
30+
- add sleep mode
31+
- unify rotation support
32+
- **st7789**
33+
- added DrawRGBBitmap8 (same as ili9341 & st7735)
34+
- allow changing the color format using COLMOD
35+
- make it possible to configure gamma
36+
- support the chip select pin
37+
- update saved rotation in SetRotation
38+
- add sleep mode
39+
- unify rotation support
40+
- **sx126x/sx127x**
41+
- Reduce spi buffer size, add missing select when using channels
42+
- Remove heap alloc in interrupt, add non blocking channel send/receive, and other cleanups
43+
- **wifinina**
44+
- add generated strings, improved debugging system and messages
45+
- add ResetIsHigh to control the behavior of the RESET pin for boards like the Arduino MKR 1010
46+
- only add generated strings when using wifidebug tag
47+
48+
- **bugfixes**
49+
- **ds3231**
50+
- Document incorrect leap year 2100
51+
- Fix negative temperature conversion
52+
- **ili9341**
53+
- fix Size() for mirrored rotation
54+
- **st7789**
55+
- avoid heap allocations after the driver is created
56+
- **net**
57+
- Revert "(#501) make IP.String() method return something sensible"
58+
- **wifinina**
59+
- small timing adjustments in Configure() to better ensure device reset
60+
61+
- **examples**
62+
- **sdcard**
63+
- remove tinyfs example and replace with link to tinyfs repo in docs
64+
- **wifinina**
65+
- improve connectToAP() and other needed minor corrections
66+
67+
- **build**
68+
- switch to ghcr.io for docker container
69+
- run smoke tests in parallel
70+
- **Makefile**
71+
- add XTENSA=0 flag to skip Xtensa tests
72+
- remove AVR=0 flag
73+
74+
- **docs**
75+
- remove full list of devices from README, better to keep it on the tinygo.org site
76+
- update LICENSE year
77+
78+
179
0.24.0
280
---
381
- **new devices**
@@ -75,6 +153,7 @@
75153
- update to actions/checkout@v3
76154
- work around for CVE-2022-24765
77155

156+
78157
0.23.0
79158
---
80159
- **new devices**

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func main() {
5252

5353
## Supported devices
5454

55-
There are currently 94 devices supported. For the complete list, please see:
55+
There are currently 96 devices supported. For the complete list, please see:
5656
https://tinygo.org/docs/reference/devices/
5757

5858
## Contributing

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ package drivers
22

33
// Version returns a user-readable string showing the version of the drivers package for support purposes.
44
// Update this value before release of new version of software.
5-
const Version = "0.24.0"
5+
const Version = "0.25.0"

0 commit comments

Comments
 (0)