Skip to content

Commit

Permalink
Release v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KangLin committed Mar 20, 2024
1 parent d1a1ca5 commit 39c7789
Show file tree
Hide file tree
Showing 20 changed files with 26 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
SOURCE_DIR: ${{github.workspace}}/.cache/source
TOOSL_DIR: ${{github.workspace}}/.cache/tools
INSTALL_DIR: ${{github.workspace}}/.cache/install
RabbitCommon_VERSION: v2.1.0
RabbitCommon_VERSION: v2.2.0
VCPKGGITCOMMITID: a1a1cbc975abf909a6c8985a6a2b8fe20bbd9bd6
ANDROID_ABI: ${{matrix.ANDROID_ABI}}
ANDROID_PLATFORM: android-28
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: build
env:
artifact_path: artifact_path
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RabbitCommon_VERSION: v2.1.0
RabbitCommon_VERSION: v2.2.0

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
TOOSL_DIR: ${{github.workspace}}/.cache/tools
INSTALL_DIR: ${{github.workspace}}/.cache/install_doxygen
DOXYGEN_VERSION: 1.9.8
RabbitCommon_VERSION: v2.1.0
RabbitCommon_VERSION: v2.2.0
artifact_name: build_doxygen

# Map the job outputs to step outputs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
INSTALL_DIR: ${{github.workspace}}/.cache/install
qt_modules: ${{matrix.qt_modules}}
VCPKGGITCOMMITID: a1a1cbc975abf909a6c8985a6a2b8fe20bbd9bd6
RabbitCommon_VERSION: v2.1.0
RabbitCommon_VERSION: v2.2.0
artifact_name: build_macos

# Map the job outputs to step outputs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
SOURCE_DIR: ${{github.workspace}}\.cache\source
TOOSL_DIR: ${{github.workspace}}\.cache\tools
INSTALL_DIR: ${{github.workspace}}\.cache\install
RabbitCommon_VERSION: v2.1.0
RabbitCommon_VERSION: v2.2.0
artifact_name: build_mingw
CMAKE_GENERATOR: "MinGW Makefiles"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
CMAKE_GENERATOR: "Visual Studio 17 2022"
VCPKG_PLATFORM_TOOLSET: ${{matrix.VCPKG_PLATFORM_TOOLSET}}
CMAKE_GENERATOR_PLATFORM: ${{matrix.CMAKE_GENERATOR_PLATFORM}}
RabbitCommon_VERSION: v2.1.0
RabbitCommon_VERSION: v2.2.0
VCPKGGITCOMMITID: a1a1cbc975abf909a6c8985a6a2b8fe20bbd9bd6
qt_modules: qtwebengine ${{matrix.qt_modules}}
artifact_name: build_msvc
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/qmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
SOURCE_DIR: ${{github.workspace}}/.cache/source
TOOSL_DIR: ${{github.workspace}}/.cache/tools
INSTALL_DIR: ${{github.workspace}}/.cache/install_qmake
RabbitCommon_VERSION: 2.1.0
RabbitCommon_VERSION: 2.2.0

steps:
- name: Checkout Repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
SOURCE_DIR: ${{github.workspace}}/.cache/source
TOOSL_DIR: ${{github.workspace}}/.cache/tools
INSTALL_DIR: ${{github.workspace}}/.cache/install_ubuntu
RabbitCommon_VERSION: 2.1.0
RabbitCommon_VERSION: 2.2.0
artifact_name: build_ubuntu

# Map the job outputs to step outputs
Expand Down
2 changes: 1 addition & 1 deletion App/App.pro
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ isEmpty(RabbitCommon_VERSION) {
}
}
isEmpty(RabbitCommon_VERSION){
RabbitCommon_VERSION="v2.1.0"
RabbitCommon_VERSION="v2.2.0"
}
message("RabbitCommon_VERSION:$$RabbitCommon_VERSION")
DEFINES += RabbitCommon_VERSION=\"\\\"$$quote($$RabbitCommon_VERSION)\\\"\"
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if(POLICY CMP0020)
cmake_policy(SET CMP0020 NEW)
endif()

SET(RabbitCommon_VERSION "v2.1.0")
SET(RabbitCommon_VERSION "v2.2.0")
# Find Git Version Patch
IF(EXISTS "${CMAKE_SOURCE_DIR}/.git")
if(NOT GIT)
Expand Down
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
- CTools::InstallTranslator
- CTools::RemoveTranslator
- CDir::GetDirDocument
- Fix: INSTALL_LOG_CONFIG_FILE bug
- Download: fix check file is null
- CMake: windeployqt with --compiler-runtime

### Version: v2.1.0
- Fix: CMake: fix the shared library symlinks bug. #1
Expand Down
4 changes: 4 additions & 0 deletions ChangeLog_zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
- CTools::InstallTranslator
- CTools::RemoveTranslator
- CDir::GetDirDocument
- 修复:
- INSTALL_LOG_CONFIG_FILE 错误
- 下载: 修复 file 指针是空错误
- CMake: windeployqt 使用 --compiler-runtime

### 版本: v2.1.0
- 修复 linux 下动态库接错误 #1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ See: [FrmUpdater.h](Src/FrmUpdater/FrmUpdater.h)

<?xml version="1.0" encoding="UTF-8"?>
<REDIRECT>
<VERSION>v2.1.0</VERSION>
<VERSION>v2.2.0</VERSION>
<WINDOWS>
<URL>url</URL>
</WINDOWS>
Expand Down
2 changes: 1 addition & 1 deletion README_zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ Qt因为版权原因,没有提供openssl动态库,所以必须自己复制op

<?xml version="1.0" encoding="UTF-8"?>
<REDIRECT>
<VERSION>v2.1.0</VERSION>
<VERSION>v2.2.0</VERSION>
<WINDOWS>
<URL>url</URL>
</WINDOWS>
Expand Down
2 changes: 1 addition & 1 deletion Src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ include(CMakeDependentOption)
include(${CMAKE_CURRENT_SOURCE_DIR}/../cmake/RabbitCommonUtils.cmake)
include(${CMAKE_CURRENT_SOURCE_DIR}/../cmake/Download.cmake)

SET(RabbitCommon_VERSION "v2.1.0")
SET(RabbitCommon_VERSION "v2.2.0")
SET(RABBITCOMMON_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/..)
GET_VERSION(SOURCE_DIR ${RABBITCOMMON_SOURCE_DIR}
OUT_VERSION RabbitCommon_VERSION
Expand Down
2 changes: 1 addition & 1 deletion Src/Src.pro
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ isEmpty(RabbitCommon_VERSION) {
}
}
isEmpty(RabbitCommon_VERSION){
RabbitCommon_VERSION="v2.1.0"
RabbitCommon_VERSION="v2.2.0"
}
message("RabbitCommon RabbitCommon_VERSION:$$RabbitCommon_VERSION; RabbitCommon_REVISION:$$RabbitCommon_REVISION")
DEFINES += RabbitCommon_VERSION=\"\\\"$$quote($$RabbitCommon_VERSION)\\\"\" RabbitCommon_REVISION=\"\\\"$$quote($$RabbitCommon_REVISION)\\\"\"
Expand Down
2 changes: 1 addition & 1 deletion Update/update.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"redirect": [
{
"version":"v2.1.0"
"version":"v2.2.0"
}
]
}
2 changes: 1 addition & 1 deletion Update/update.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version='1.0' encoding='UTF-8'?>
<REDIRECT>
<VERSION>v2.1.0</VERSION>
<VERSION>v2.2.0</VERSION>
</REDIRECT>
4 changes: 2 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
rabbitcommon (2.1.0) unstable; urgency=medium
rabbitcommon (2.2.0) unstable; urgency=medium



-- Kang Lin <[email protected]> Fri, 15 Mar 2024 14:35:41 +0800
-- Kang Lin <[email protected]> Wed, 20 Mar 2024 15:30:19 +0800
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rabbitcommon",
"version-string": "2.1.0",
"version-string": "2.2.0",
"license": "GPL-3.0",
"homepage": "https://github.com/KangLin/RabbitCommon",

Expand Down

0 comments on commit 39c7789

Please sign in to comment.