Skip to content

Commit 554e104

Browse files
committed
next release will probably be 2.2.2
1 parent 77dcd25 commit 554e104

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

doc/doxygen/lwip.Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "lwIP"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = "2.2.1"
41+
PROJECT_NUMBER = "2.2.2.dev"
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

src/Filelists.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ endif()
1414

1515
set(LWIP_VERSION_MAJOR "2")
1616
set(LWIP_VERSION_MINOR "2")
17-
set(LWIP_VERSION_REVISION "1")
17+
set(LWIP_VERSION_REVISION "2")
1818
# LWIP_VERSION_RC is set to LWIP_RC_RELEASE for official releases
1919
# LWIP_VERSION_RC is set to LWIP_RC_DEVELOPMENT for Git versions
2020
# Numbers 1..31 are reserved for release candidates
21-
set(LWIP_VERSION_RC "LWIP_RC_RELEASE")
21+
set(LWIP_VERSION_RC "LWIP_RC_DEVELOPMENT")
2222

2323
if ("${LWIP_VERSION_RC}" STREQUAL "LWIP_RC_RELEASE")
2424
set(LWIP_VERSION_STRING

src/include/lwip/init.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ extern "C" {
5454
/** x.X.x: Minor version of the stack */
5555
#define LWIP_VERSION_MINOR 2
5656
/** x.x.X: Revision of the stack */
57-
#define LWIP_VERSION_REVISION 1
57+
#define LWIP_VERSION_REVISION 2
5858
/** For release candidates, this is set to 1..254
5959
* For official releases, this is set to 255 (LWIP_RC_RELEASE)
6060
* For development versions (Git), this is set to 0 (LWIP_RC_DEVELOPMENT) */
61-
#define LWIP_VERSION_RC LWIP_RC_RELEASE
61+
#define LWIP_VERSION_RC LWIP_RC_DEVELOPMENT
6262

6363
/** LWIP_VERSION_RC is set to LWIP_RC_RELEASE for official releases */
6464
#define LWIP_RC_RELEASE 255

0 commit comments

Comments
 (0)