Skip to content

Commit 820298b

Browse files
committed
all: prepare for release 0.24.0
Signed-off-by: deadprogram <[email protected]>
1 parent 46cbacb commit 820298b

File tree

2 files changed

+78
-1
lines changed

2 files changed

+78
-1
lines changed

CHANGELOG.md

+77
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,80 @@
1+
0.24.0
2+
---
3+
- **new devices**
4+
- **lora**
5+
- created shared RadioEvent
6+
- move shared config for sx126x/sx127x to single package
7+
- **lorawan**
8+
- add initial LoRaWAN stack support
9+
- Basic implementation of Lorawan Regional Settings and EU868/AU915 regions
10+
- **qmi8658c**
11+
- Add support for the QMI8658C sensor (#467)
12+
- **sh1106**
13+
- add support for SH1106 display driver
14+
- **sx127x**
15+
- Driver for Semtech sx127x radio modules
16+
17+
- **enhancements**
18+
- **bme280**
19+
- improve config support
20+
- add ReadAltitude() function copied from BMP280 driver
21+
- **buzzer**
22+
- make all note durations float64
23+
- no tone during rest
24+
- **dht22**
25+
- update DHT22 receive to use runtime/interrupt
26+
- **gps**
27+
- add support for GLL sentence type, add original sentence to gps errors
28+
- improve error handling
29+
- improve parsing and add tests to verify
30+
- **microbitmatrix**
31+
- add link to schema for microbit V2
32+
- add smoke test for microbitmatrix with microbit-v2
33+
- add support for brightness of led pixels
34+
- harmonize v1 and v2 implementation
35+
- move Size() to version agnostic part
36+
- **mpu6050**
37+
- add functions to configure clock, and scaling for accelerometer and gyroscope
38+
- **net/http**
39+
- add PostForm()
40+
- **sx126x**
41+
- add Reset() and needed pin
42+
- move RadioController into separate file for clarity
43+
- pre-define all errors to avoid heap allocations
44+
- refactor to RadioController interface to more easily handle non-STM32WL boards and remove duplicated code
45+
46+
- **vl53l1x**
47+
- Add getter for the effective SPAD count
48+
- **wifinina**
49+
- add support for http server (#480)
50+
51+
- **bugfixes**
52+
- **lsm303agr**
53+
- fix I2C address auto increment for multi data read
54+
- **net**
55+
- (#501) make IP.String() method return something sensible
56+
- **mpu6050**
57+
- return I2C error when configuring fails
58+
- **sx126x**
59+
- fix in SetBandwidth function
60+
- actually set the frequency when calling SetFrequency()
61+
- correct RX/TX pin mapping for TheThingsIndustries GNSE board
62+
63+
- **examples**
64+
- **LoRaWAN**
65+
- example with LoRaWAN AT command set implementation
66+
- basic example
67+
- update all remaining examples for refactored API
68+
- **sx126x**
69+
- fix bandwidth,tx power in lora//lora_continuous example
70+
- **sx127x**
71+
- rx/tx example
72+
73+
- **build**
74+
- remove older format build tags
75+
- update to actions/checkout@v3
76+
- work around for CVE-2022-24765
77+
178
0.23.0
279
---
380
- **new devices**

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.23.0"
5+
const Version = "0.24.0"

0 commit comments

Comments
 (0)