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 macro in header file
  • Loading branch information
chinglee-iot authored Jul 12, 2024
2 parents 297cce5 + b20ab9f commit 8707f40
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 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
10 changes: 4 additions & 6 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_MAJOR 4
#define ipFR_TCP_VERSION_MINOR 0
#define ipFR_TCP_VERSION_NUMBER "V4.2.999"
#define ipFR_TCP_VERSION_MAJOR 4
#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
#define ipFR_TCP_VERSION_BUILD 999

/* 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 8707f40

Please sign in to comment.