Skip to content

Commit

Permalink
Merge pull request #18 from tdittr/master
Browse files Browse the repository at this point in the history
Change dates in Changelog to be in ISO8601 format
  • Loading branch information
diondokter authored Sep 7, 2023
2 parents 4b7101b + 47d4b4d commit c613be0
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,25 @@

- Update nrfxlib-sys to 2.4.2, removing the need for the `EGU1` interrupt

## 0.3.4 (05-09-23)
## 0.3.4 (2023-09-05)

- Fixed issue where LTE link waiting couldn't be cancelled

## 0.3.3 (07-08-23)
## 0.3.3 (2023-08-07)

- Fixed issue where a split socket polled on two different tasks would not properly wake up one of the two tasks if both were waiting on the same socket. (#14)
- Fixed the low-level semaphore implementation to make it wait the appropriate time (#16)

## 0.3.2 (24-04-23)
## 0.3.2 (2023-04-24)

- Fixed at notification issue where a too small string buffer would panic. Now the notification is truncated to the size of the string.

## 0.3.1 (18-04-23)
## 0.3.1 (2023-04-18)

- Updated embassy-sync to 0.2.0 (to fix new nightly compilation issue)
- Updated num-enum to 0.6

## 0.3.0 (03-04-23)
## 0.3.0 (2023-04-03)

- *Breaking*: LteLink is no longer Clone.
- *Breaking*: There is no longer a race going on for turning the modem on and off.
Expand All @@ -34,31 +34,31 @@
This also saves the modem settings to its NVM.0
- Added an error recovery method. See the readme for more information.

## 0.2.3 (13-03-23)
## 0.2.3 (2023-03-13)

- `NRF_ENOTCONN` socket errors are now reported as Disconnected instead of as unknown nrf errors

## 0.2.2 (12-03-23)
## 0.2.2 (2023-03-12)

- Sockets are now waken up from IPC interrupts instead of APP interrupts. This makes it so the wakers are only woken ~62% of the times in the previous version
- Sockets now have a fixed amount of wakers, which makes some perf better and uses less sketchy unsafe code. This replaces the previously used intrusive linked list.
- Added some disconnect detection on sockets. This is one of the new errors a socket can return. Previously a receive call would just return 0 bytes being read.

## 0.2.1 (27-02-23)
## 0.2.1 (2023-02-27)

- Stop gnss when GnssStream is dropped (https://github.com/diondokter/nrf-modem/pull/11)

## 0.2.0 (19-01-23)
## 0.2.0 (2023-01-19)

- *Breaking*: The error enum is now non-exhaustive
- UICC is now disabled when the LTE is disabled to save on power.
- Added the ability to send SMS messages (https://github.com/diondokter/nrf-modem/pull/9)

## 0.1.1 (26-12-22)
## 0.1.1 (2022-12-26)

- Fix: Made GnssUsecase fields public (https://github.com/diondokter/nrf-modem/pull/8)

## 0.1.0 (25-12-22)
## 0.1.0 (2022-12-25)

Initial release with support for:
- AT commands
Expand Down

0 comments on commit c613be0

Please sign in to comment.