Skip to content

Commit

Permalink
configure.ac: increase version minor number
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
mchehab committed Feb 14, 2021
1 parent 92c30eb commit c7d9809
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/on_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,19 @@ 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:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
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:
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -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], [[email protected]])
AC_INIT([zbar], [0.23.91], [[email protected]])
m4_ifndef([AC_LANG_DEFINES_PROVIDED],
[m4_define([AC_LANG_DEFINES_PROVIDED])])
AC_CONFIG_AUX_DIR(config)
Expand Down

0 comments on commit c7d9809

Please sign in to comment.