Skip to content

Commit

Permalink
Update version number macro in header file
Browse files Browse the repository at this point in the history
* Update version number V4.2.999 in header file to indicate main branch
  development builds version
  • Loading branch information
chinglee-iot committed Jul 12, 2024
1 parent 297cce5 commit 921f0eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.commit_id }}
ref: ${{ github.event.inputs.version_number }}
path: FreeRTOS-Plus-TCP
submodules: recursive
- name: Checkout disabled submodules
Expand Down
6 changes: 2 additions & 4 deletions source/include/FreeRTOS_IP.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,11 @@

/* Constants defining the current version of the FreeRTOS+TCP
* network stack. */
#define ipFR_TCP_VERSION_NUMBER "V4.0.999"
#define ipFR_TCP_VERSION_NUMBER "V4.2.999"
#define ipFR_TCP_VERSION_MAJOR 4
#define ipFR_TCP_VERSION_MINOR 0
#define ipFR_TCP_VERSION_MINOR 2
/* Development builds are always version 999. */
#define ipFR_TCP_VERSION_BUILD 999
/* Using TCP version to support backward compatibility in the Demo files. */
#define FREERTOS_PLUS_TCP_VERSION 10

/* Some constants defining the sizes of several parts of a packet.
* These defines come before including the configuration header files. */
Expand Down

0 comments on commit 921f0eb

Please sign in to comment.