Skip to content

Commit 31f09d9

Browse files
committed
all: update for relase v0.27
Signed-off-by: deadprogram <[email protected]>
1 parent 0ea969f commit 31f09d9

File tree

2 files changed

+84
-1
lines changed

2 files changed

+84
-1
lines changed

CHANGELOG.md

+83
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,86 @@
1+
0.27.0
2+
---
3+
- **core**
4+
- prepare for CGo changes in TinyGo
5+
6+
- **new devices**
7+
- **adafruit4650**
8+
- support for Adafruit 4650 feather OLED
9+
- **net**
10+
- new networking support based on tinygo net package
11+
- **pixel**
12+
- add package for efficiently working with raw pixel buffers
13+
- **rotary**
14+
- Adding driver for rotary encoder support
15+
- **seesaw**
16+
- Adding support for Adafruit Seesaw platform
17+
- **sgp30**
18+
- add SGP30 air quality sensor
19+
- **sk6812**
20+
- added support for SK6812 to WS2812 device (#610)
21+
22+
- **enhancements**
23+
- **epd2in13**
24+
- add Sleep method like other displays
25+
- unify rotation configuration with other displays
26+
- use better black/white approximation
27+
- **ili9341**
28+
- add DrawBitmap method
29+
- **lora/lorawan**
30+
- LoRa WAN US915 Support
31+
- LoRa WAN add setter functions
32+
- refactor shared functionality for channels/regions
33+
- **mcp2515**
34+
- Add more line speeds to mcp2515.go (#626)
35+
- **rtl8720dn**
36+
- use drivers package version as the driver version
37+
- **ssd1306**
38+
- improvements needed for Thumby SPI display
39+
- **st7735**
40+
- make the display generic over RGB565 and RGB444
41+
- **st7789**
42+
- add DrawBitmap method
43+
- make the display generic over RGB565 and RGB444
44+
- **wifinina**
45+
- add ResetIsHigh cfg switch for MKR 1010 (copied from #561)
46+
- maintenence. Also see PR #4085 in the main TinyGo repo
47+
- use drivers package version as the driver version
48+
49+
- **bugfixes**
50+
- **adxl345**
51+
- Use int16 for ADXL345 readings (#656)
52+
- **at24cx**
53+
- fixed the description of the device struct
54+
- **rtl8720dn**
55+
- allow connecting to open wifi access points
56+
- fix check for bad Wifi connect
57+
- **sh1106**
58+
- fix I2C interface and add smoketest
59+
- fixed the description of the device struct
60+
- **wifinina**
61+
- add 'unknown failure' reason code for AP connect
62+
- fix concurrency issues with multiple sockets
63+
- fix wifinina UDP send
64+
65+
- **examples**
66+
- **ds3231**
67+
- fix the description in the example
68+
- **lorawan**
69+
- add missing functions for simulated interface
70+
- modify atcmd and basic demo to support choosing any one of the supported regions at compile time by using ldflags
71+
- **net**
72+
- all networking examples now using netdev and netlink.
73+
74+
- **build**
75+
- **all**
76+
- fix broken testrunner
77+
- migrated legacy I2C
78+
- add natiu package for tests
79+
- **smoketest**
80+
- add stack-size param for net tests.
81+
- allow stack-size flag as it is needed for net examples
82+
83+
184
0.26.0
285
---
386
- **core**

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.26.0"
5+
const Version = "0.27.0"

0 commit comments

Comments
 (0)