Skip to content

Commit 19c52ff

Browse files
committed
Release v2.3.2
1 parent f31a83f commit 19c52ff

24 files changed

Lines changed: 35 additions & 25 deletions

.github/workflows/android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
SOURCE_DIR: ${{github.workspace}}/.cache/source
3636
TOOSL_DIR: ${{github.workspace}}/.cache/tools
3737
INSTALL_DIR: ${{github.workspace}}/.cache/install
38-
RabbitCommon_VERSION: v2.3.1
38+
RabbitCommon_VERSION: v2.3.2
3939
VCPKGGITCOMMITID: 59aeb8fe8fe1c980de6bd5ba634cf21024522d81
4040
ANDROID_ABI: ${{matrix.ANDROID_ABI}}
4141
ANDROID_PLATFORM: android-35

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ name: build
55
env:
66
artifact_path: artifact_path
77
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8-
RabbitCommon_VERSION: v2.3.1
9-
RabbitCommon_VERSION_PRE: v2.3.0
8+
RabbitCommon_VERSION: v2.3.2
9+
RabbitCommon_VERSION_PRE: v2.3.1
1010

1111
on:
1212
push:
@@ -93,13 +93,15 @@ jobs:
9393
echo "Full Changelog: [${{env.RabbitCommon_VERSION_PRE}}...${{env.RabbitCommon_VERSION}}](https://github.com/KangLin/RabbitCommon/compare/${{env.RabbitCommon_VERSION_PRE}}...${{env.RabbitCommon_VERSION}})" >> ${{github.workspace}}/Note.md
9494
echo "" >> ${{github.workspace}}/Note.md
9595
echo "File checksum:" >> ${{github.workspace}}/Note.md
96+
echo "|File|Checksum(md5)|" >> ${{github.workspace}}/Note.md
97+
echo "| :- | :- |" >> ${{github.workspace}}/Note.md
9698
for file in *
9799
do
98100
echo "$file"
99101
if [ -f $file ]; then
100102
if [ "${file##*.}" != "xml" ] && [ "${file##*.}" != "json" ]; then
101103
md5sum $file > $file.md5sum
102-
cat $file.md5sum >> ${{github.workspace}}/Note.md
104+
awk '{print "|", $2, "|", $1, "|"}' ${file}.md5sum >> ${{github.workspace}}/Note.md
103105
fi
104106
else
105107
rm -fr $file

.github/workflows/doxygen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
TOOSL_DIR: ${{github.workspace}}/.cache/tools
2222
INSTALL_DIR: ${{github.workspace}}/.cache/install_doxygen
2323
DOXYGEN_VERSION: 1.9.8
24-
RabbitCommon_VERSION: v2.3.1
24+
RabbitCommon_VERSION: v2.3.2
2525
artifact_name: build_doxygen
2626

2727
# Map the job outputs to step outputs

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
INSTALL_DIR: ${{github.workspace}}/.cache/install
4040
qt_modules: ${{matrix.qt_modules}}
4141
VCPKGGITCOMMITID: 59aeb8fe8fe1c980de6bd5ba634cf21024522d81
42-
RabbitCommon_VERSION: v2.3.1
42+
RabbitCommon_VERSION: v2.3.2
4343
artifact_name: build_macos
4444

4545
# Map the job outputs to step outputs

.github/workflows/mingw.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
SOURCE_DIR: ${{github.workspace}}\.cache\source
3131
TOOSL_DIR: ${{github.workspace}}\.cache\tools
3232
INSTALL_DIR: ${{github.workspace}}\.cache\install
33-
RabbitCommon_VERSION: v2.3.1
33+
RabbitCommon_VERSION: v2.3.2
3434
artifact_name: build_mingw
3535
CMAKE_GENERATOR: "MinGW Makefiles"
3636

.github/workflows/msvc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
CMAKE_GENERATOR: "Visual Studio 17 2022"
4848
VCPKG_PLATFORM_TOOLSET: ${{matrix.VCPKG_PLATFORM_TOOLSET}}
4949
CMAKE_GENERATOR_PLATFORM: ${{matrix.CMAKE_GENERATOR_PLATFORM}}
50-
RabbitCommon_VERSION: v2.3.1
50+
RabbitCommon_VERSION: v2.3.2
5151
VCPKGGITCOMMITID: 59aeb8fe8fe1c980de6bd5ba634cf21024522d81
5252
qt_modules: ${{matrix.qt_modules}}
5353
artifact_name: build_msvc

.github/workflows/qmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
SOURCE_DIR: ${{github.workspace}}/.cache/source
2424
TOOSL_DIR: ${{github.workspace}}/.cache/tools
2525
INSTALL_DIR: ${{github.workspace}}/.cache/install_qmake
26-
RabbitCommon_VERSION: 2.3.1
26+
RabbitCommon_VERSION: 2.3.2
2727

2828
steps:
2929
- name: Checkout Repository

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
SOURCE_DIR: ${{github.workspace}}/.cache/source
2828
TOOSL_DIR: ${{github.workspace}}/.cache/tools
2929
INSTALL_DIR: ${{github.workspace}}/.cache/install_ubuntu
30-
RabbitCommon_VERSION: 2.3.1
30+
RabbitCommon_VERSION: 2.3.2
3131
artifact_name: build_ubuntu
3232

3333
# Map the job outputs to step outputs

App/App.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ isEmpty(RabbitCommon_VERSION) {
3737
}
3838
}
3939
isEmpty(RabbitCommon_VERSION){
40-
RabbitCommon_VERSION="2.3.1"
40+
RabbitCommon_VERSION="2.3.2"
4141
}
4242
message("RabbitCommon_VERSION:$$RabbitCommon_VERSION")
4343
DEFINES += RabbitCommon_VERSION=\"\\\"$$quote($$RabbitCommon_VERSION)\\\"\"

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ endif()
2828

2929
# 参见:
3030
# 语义化版本: https://semver.org/lang/zh-CN/
31-
SET(RabbitCommon_VERSION "2.3.1")
31+
SET(RabbitCommon_VERSION "2.3.2")
3232
# Find Git Version Patch
3333
IF(EXISTS "${CMAKE_SOURCE_DIR}/.git")
3434
if(NOT GIT)

0 commit comments

Comments
 (0)