Skip to content

Commit e4e236a

Browse files
Update mainline to reflect changes after the release. (#563)
* Update README.md * Update History.txt * Update version number macros * Update manifest.yml
1 parent 188a9d0 commit e4e236a

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

History.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Changes between V3.0.0 and V3.1.0 releases:
2+
+ Fixed a bug in the Connect function where multiple SYN and RST packet combinations can
3+
lead to orphaned sockets.
4+
+ Added network interface support for NetifSlirp.
5+
16
Changes between V3.0.0 and V2.4.0 releases:
27
+ Split the source files according to the function the code performs.
38
This makes the code modular making test coverage easier.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The easiest way to use FreeRTOS-Plus-TCP is to start with the pre-configured dem
88

99
Additionally, for FreeRTOS-Plus-TCP source code organization refer to the [Documentation](http://www.FreeRTOS.org/FreeRTOS-Plus/FreeRTOS_Plus_TCP/TCP_Networking_Tutorial.html), and [API Reference](https://freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_TCP/FreeRTOS_TCP_API_Functions.html).
1010

11-
FreeRTOS-Plus-TCP V2.3.2-LTS-Patch-2 [source code](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/tree/V2.3.2-LTS-Patch-2)(.c .h) is part of the [FreeRTOS 202012.04 LTS](https://github.com/FreeRTOS/FreeRTOS-LTS/tree/202012.04-LTS) release.
11+
**FreeRTOS-Plus-TCP V3.1.0 [source code](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/tree/V3.1.0)(.c .h) is part of the [FreeRTOS 202210.00 LTS](https://github.com/FreeRTOS/FreeRTOS-LTS/tree/202210.00-LTS) release.**
1212

1313
### Getting help
1414
If you have any questions or need assistance troubleshooting your FreeRTOS project, we have an active community that can help on the [FreeRTOS Community Support Forum](https://forums.freertos.org). Please also refer to [FAQ](http://www.freertos.org/FAQHelp.html) for frequently asked questions.

manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name : "FreeRTOS-Plus-TCP"
2-
version: "V3.0.0"
2+
version: "V3.1.0"
33
description: "Thread safe FreeRTOS TCP/IP stack working on top of the FreeRTOS-Kernel to implement the TCP/IP protocol. Suitable for microcontrollers."
44
license: "MIT"
55
dependencies:

source/include/FreeRTOS_IP.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@
4444

4545
/* Constants defining the current version of the FreeRTOS+TCP
4646
* network stack. */
47-
#define ipFR_TCP_VERSION_NUMBER "V3.0.999"
47+
#define ipFR_TCP_VERSION_NUMBER "V3.1.999"
4848
#define ipFR_TCP_VERSION_MAJOR 3
49-
#define ipFR_TCP_VERSION_MINOR 0
49+
#define ipFR_TCP_VERSION_MINOR 1
5050
/* Development builds are always version 999. */
5151
#define ipFR_TCP_VERSION_BUILD 999
5252

0 commit comments

Comments
 (0)