From c7d9809b0b49e81fd86a48e9d1bc3c7db8c50bbd Mon Sep 17 00:00:00 2001 From: Mauro Carvalho Chehab Date: Sun, 14 Feb 2021 16:27:36 +0100 Subject: [PATCH] configure.ac: increase version minor number Except for some changes at the CI automation, there's no change on ZBar. Yet, in order to be able to check if the new on_release.yml will properly generate binaries, and the process is reliable, we need a new version. Signed-off-by: Mauro Carvalho Chehab --- .github/workflows/on_release.yml | 11 ++++++----- configure.ac | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/on_release.yml b/.github/workflows/on_release.yml index 3d023766..ad7a1818 100644 --- a/.github/workflows/on_release.yml +++ b/.github/workflows/on_release.yml @@ -30,9 +30,10 @@ jobs: .github/workflows/debuilder.sh - name: generating tarball run: | - OS_VERSION=$(. /etc/os-release && echo $ID-$VERSION_ID) - tar cvfz ${DIR}/zbar-${OS_VERSION}.tar.gz *.deb - echo "OS_VERSION=$OS_VERSION" >> $GITHUB_ENV + DIR="${PWD}" + cd .. + tar cvfz zbar-ubuntu-20.04.tar.gz *.deb + cd ${DIR} - name: upload env: @@ -40,8 +41,8 @@ jobs: uses: actions/upload-release-asset@v1 with: upload_url: ${{ github.event.release.upload_url }} - asset_path: ./zbar-${OS_VERSION}.tar.gz - asset_name: zbar-${OS_VERSION}.tar.gz + asset_path: ../zbar-ubuntu-20.04.tar.gz + asset_name: zbar-ubuntu-20.04.tar.gz asset_content_type: application/gzip Mac_OS: diff --git a/configure.ac b/configure.ac index 1d423404..c8fea14b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ changecom()dnl dnl Process this file with autoconf to produce a configure script. AC_PREREQ([2.68]) -AC_INIT([zbar], [0.23.90], [mchehab+huawei@kernel.org]) +AC_INIT([zbar], [0.23.91], [mchehab+huawei@kernel.org]) m4_ifndef([AC_LANG_DEFINES_PROVIDED], [m4_define([AC_LANG_DEFINES_PROVIDED])]) AC_CONFIG_AUX_DIR(config)