From e358ffa3902da51efa180cb2805628a58877ddc3 Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Thu, 13 Oct 2022 17:53:33 -0700 Subject: [PATCH 1/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d6c84f02d6..7c6ee16c6e 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The easiest way to use FreeRTOS-Plus-TCP is to start with the pre-configured dem 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 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. +**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. From f9d24135b49009f2552cb37f6181d7306ce27f35 Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Thu, 13 Oct 2022 17:54:13 -0700 Subject: [PATCH 2/4] Update History.txt --- History.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/History.txt b/History.txt index 441587adb1..9837b7d4d7 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,8 @@ +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. From b561c707cdd25138eb5c7de52527e1f9fc7390d0 Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Thu, 13 Oct 2022 17:55:20 -0700 Subject: [PATCH 3/4] Update version number macros --- source/include/FreeRTOS_IP.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/include/FreeRTOS_IP.h b/source/include/FreeRTOS_IP.h index 805b880fbb..d8cdf2be1e 100644 --- a/source/include/FreeRTOS_IP.h +++ b/source/include/FreeRTOS_IP.h @@ -44,9 +44,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 From 0364baef6222310cbe3d5a4d52f7b6d3b6c6afcf Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Thu, 13 Oct 2022 18:21:08 -0700 Subject: [PATCH 4/4] Update manifest.yml --- manifest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.yml b/manifest.yml index 8e85092f39..2960e74170 100644 --- a/manifest.yml +++ b/manifest.yml @@ -1,5 +1,5 @@ name : "FreeRTOS-Plus-TCP" -version: "V3.0.0" +version: "V3.1.0" description: "Thread safe FreeRTOS TCP/IP stack working on top of the FreeRTOS-Kernel to implement the TCP/IP protocol. Suitable for microcontrollers." license: "MIT" dependencies: