From 801d44711f56d947ebd43b18920ede3ce1b69bc9 Mon Sep 17 00:00:00 2001 From: Anton Filimonov Date: Mon, 26 Apr 2021 09:01:26 +0300 Subject: [PATCH] Move build number to patch version position after bintray incident --- .github/actions/klogg-version/action.yml | 2 +- CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/klogg-version/action.yml b/.github/actions/klogg-version/action.yml index 68f660cbc..0c93bb69e 100644 --- a/.github/actions/klogg-version/action.yml +++ b/.github/actions/klogg-version/action.yml @@ -6,4 +6,4 @@ runs: - name: Set klogg version shell: sh run: | - echo "KLOGG_VERSION=21.04.0.$((${{ github.run_number }} + 717))" >> $GITHUB_ENV \ No newline at end of file + echo "KLOGG_VERSION=21.04.$((${{ github.run_number }} + 717))" >> $GITHUB_ENV \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 041599198..132f32a6f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.12) project(klogg - VERSION 21.04.0 + VERSION 21.04 DESCRIPTION "klogg log viewer" LANGUAGES C CXX ASM)