diff --git a/History.txt b/History.txt index fd03b8a9d..b7649b3fe 100644 --- a/History.txt +++ b/History.txt @@ -5,6 +5,11 @@ Changes between dev/ipv6_integration branch RC1 and main branch V3.0.0 releases: + New WinSim demo to support both IPv4 and IPv6. **Note**- This release does not support ESP32/ M487/ mw300_rd ports yet. This will be released soon. +Changes between V3.0.0 and V3.1.0 releases: + + Fixed a bug in the Connect function where multiple SYN and RST packet combinations can + lead to orphaned sockets. + + Added network interface support for NetifSlirp. + Changes between V3.0.0 and V2.4.0 releases: + Split the source files according to the function the code performs. This makes the code modular making test coverage easier. diff --git a/README.md b/README.md index d95213a5d..f7ebd7a7f 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,8 @@ Another way is to start with the pre-configured demo application project (found 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). +**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.** + ### Getting help 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. diff --git a/source/include/FreeRTOS_IP.h b/source/include/FreeRTOS_IP.h index c05c2928f..f7f67e3f5 100644 --- a/source/include/FreeRTOS_IP.h +++ b/source/include/FreeRTOS_IP.h @@ -45,9 +45,9 @@ /* Constants defining the current version of the FreeRTOS+TCP * network stack. */ -#define ipFR_TCP_VERSION_NUMBER "V3.0.999" +#define ipFR_TCP_VERSION_NUMBER "V3.1.999" #define ipFR_TCP_VERSION_MAJOR 3 -#define ipFR_TCP_VERSION_MINOR 0 +#define ipFR_TCP_VERSION_MINOR 1 /* Development builds are always version 999. */ #define ipFR_TCP_VERSION_BUILD 999 /* Using TCP version to support backward compatibility in the Demo files. */