Skip to content

Commit

Permalink
[Release v2.2.9] QArchive v2.2.9 release
Browse files Browse the repository at this point in the history
This is a minor release, no need to update to
this version.

#Changelog

   * Added QARCHIVE_VERSION_STR symbolic constant
     to report QArchive version to the users.
   * Fix tests

#CI/CD Changes

   * Added prebuilds for Windows Users, MSVC x64 builds
     will be uploaded to the new releases automatically.

Signed-off-by: Divya Antony J R <antonyjr@protonmail.com>
  • Loading branch information
antony-jr committed Dec 11, 2023
1 parent ed558f7 commit 4ed5c3c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# ---

CMAKE_MINIMUM_REQUIRED( VERSION 3.17)
project(QArchive VERSION 2.2.7)
project(QArchive VERSION 2.2.9)

set(CMAKE_CXX_STANDARD 11)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'QArchive',
'cpp',
version: '2.2.7',
version: '2.2.9',
license: 'BSD-3-Clause',
default_options: ['cpp_std=c++17'],
meson_version: '>=0.49.0',
Expand Down
4 changes: 3 additions & 1 deletion scripts/bump_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sed -i 's/QArchive VERSION .*/QArchive VERSION '$QARCHIVE_VERSION'\)/' CMakeList
sed -i "s/ version: .*/ version: '$QARCHIVE_VERSION',/" meson.build

cat > /tmp/qarchive.commit.template.txt << EOF
[Release $QARCHIVE_VERSION] QArchive v$QARCHIVE_VERSION release
[Release v$QARCHIVE_VERSION] QArchive v$QARCHIVE_VERSION release
#Changelog
Expand All @@ -30,7 +30,9 @@ git status

read -p "Do you want to commit? press any key to continue..."

git config core.commentchar ";"
git commit -S -t /tmp/qarchive.commit.template.txt
git config core.commentchar "#"

rm -rf /tmp/qarchive.commit.template.txt

Expand Down

0 comments on commit 4ed5c3c

Please sign in to comment.