Skip to content

Commit 910a1b3

Browse files
committed
Bump to 4.3.1 for release with bug fix for network_unit
1 parent 3a71534 commit 910a1b3

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
## [4.3.1] - 2024-06-30
6+
7+
- [network] fix network_unit return value
8+
59
## [4.3.0] - 2024-06-30
610

711
- [cbm] Implement hash functions in commodore.

common/src/fn_network/network_unit.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ uint8_t network_unit(char *devicespec)
2020
return 1;
2121

2222
if (devicespec[2] == ':') {
23-
return devicespec[1] - 0x30;
23+
return devicespec[1] - '0';
2424
}
2525

2626
return 1;

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.3.0
1+
4.3.1

0 commit comments

Comments
 (0)