Skip to content

Commit

Permalink
Update mainline to reflect changes after the release. (FreeRTOS#563)
Browse files Browse the repository at this point in the history
* Update README.md

* Update History.txt

* Update version number macros

* Update manifest.yml
  • Loading branch information
AniruddhaKanhere authored and moninom1 committed Mar 14, 2023
1 parent c8972e7 commit 8bf0bf7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions History.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
4 changes: 2 additions & 2 deletions source/include/FreeRTOS_IP.h
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit 8bf0bf7

Please sign in to comment.