Bump version to 1.2.1 for development release

This commit is contained in:
Pavel Odintsov 2021-02-05 17:35:43 +00:00
parent 6301ad1e00
commit 3a6e4ebbf0
3 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@ version: 2.1
parameters: parameters:
fastnetmon_build_version: fastnetmon_build_version:
type: string type: string
default: "1.2.0" default: "1.2.1"
jobs: jobs:
ubuntu2004: ubuntu2004:
docker: docker:

View File

@ -119,7 +119,7 @@ add_executable(fastnetmon fastnetmon.cpp)
# Get last commit hash # Get last commit hash
execute_process(COMMAND git rev-list HEAD COMMAND head -n 1 OUTPUT_VARIABLE GIT_LAST_COMMIT_HASH OUTPUT_STRIP_TRAILING_WHITESPACE) execute_process(COMMAND git rev-list HEAD COMMAND head -n 1 OUTPUT_VARIABLE GIT_LAST_COMMIT_HASH OUTPUT_STRIP_TRAILING_WHITESPACE)
set(FASTNETMON_APPLICATION_VERSION "1.2.0 master git-${GIT_LAST_COMMIT_HASH}") set(FASTNETMON_APPLICATION_VERSION "1.2.1 master git-${GIT_LAST_COMMIT_HASH}")
configure_file(fast_platform.h.template "${PROJECT_SOURCE_DIR}/fast_platform.h") configure_file(fast_platform.h.template "${PROJECT_SOURCE_DIR}/fast_platform.h")
# Use new Memory Model Aware Atomic Operations # Use new Memory Model Aware Atomic Operations

View File

@ -214,8 +214,8 @@ sub main {
install_sentry(); install_sentry();
my $stable_release_version = '1.1.9'; my $stable_release_version = '1.2.0';
my $development_release_version = '1.2.0'; my $development_release_version = '1.2.1';
my $download_path = "https://community-downloads.fastnetmon.com/releases/$stable_release_version"; my $download_path = "https://community-downloads.fastnetmon.com/releases/$stable_release_version";