Skip to content
This repository was archived by the owner on Nov 3, 2023. It is now read-only.

Commit bc06bbe

Browse files
committed
chore: prepare v2.15.0-RC2, fix releases workflow
Former-commit-id: 6cf02be
1 parent 43e5b77 commit bc06bbe

File tree

7 files changed

+16
-8
lines changed

7 files changed

+16
-8
lines changed

.github/workflows/releases.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,10 @@ jobs:
2929
with:
3030
arch: amd64
3131
vsversion: 2019
32-
- name: build with gcc
32+
- name: build with gcc libLoaderNative
3333
run: ./scripts/WIN/cppBuilds.bat libLoaderNative
34+
- name: build with gcc libLoader
35+
run: ./scripts/WIN/cppBuilds.bat libLoader
3436
- name: copy out
3537
run: copy ./cpp/build/Release/*.dll && copy ./cpp/build/Release/*.lib
3638
- name: upload
@@ -52,8 +54,10 @@ jobs:
5254
platform: x64
5355
- name: print glibc version
5456
run: ldd --version
55-
- name: build with gcc
57+
- name: build with gcc libLoaderNative
5658
run: ./scripts/LINUX/cppBuilds.sh libLoaderNative
59+
- name: build with gcc libLoader
60+
run: ./scripts/LINUX/cppBuilds.sh libLoader
5761
- name: copy out
5862
run: cp ./cpp/build/*.so ./ && cp /lib/x86_64-linux-gnu/libcrypt.so.1 ./
5963
- name: upload

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## v2.15.0-RC2
4+
与上一版本无修改
5+
修复了打包 workflow 不导出 libLoader 的问题
6+
37
## v2.15.0-RC
48
* 修复文件列表的问题, #188
59
* 修复 MiraiCP-native 的问题, 现在理论上应该是能开始用了, 但还没经过完全测试

cpp/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = MiraiCP
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = v2.15.0-RC
41+
PROJECT_NUMBER = v2.15.0-RC2
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

cpp/include/common/PluginConfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323

2424
namespace MiraiCP {
25-
constexpr const char *m_MiraiCPVersion = "v2.15.0-RC";
25+
constexpr const char *m_MiraiCPVersion = "v2.15.0-RC2";
2626
inline const std::string MiraiCPVersion = m_MiraiCPVersion;
2727

2828
struct PluginConfig {

kotlin/buildSrc/src/main/kotlin/Version.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
object Version {
20-
const val miraiCP = "2.15.0-RC"
20+
const val miraiCP = "2.15.0-RC2"
2121

2222
// plugins
2323
const val kotlin = "1.8.10"

kotlin/loader/src/nativeMain/kotlin/scripts/runMiraiCP.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#
1818
#
1919

20-
executable="./MiraiCP-loader-v2.15.0-RC.kexe"
20+
executable="./MiraiCP-loader-v2.15.0-RC2.kexe"
2121
grep_re=$(LD_LIBRARY_PATH=./ ldd $executable | grep "not found")
2222
if [ "$grep_re" != "" ]; then
2323
echo "检测到以下依赖缺失"

kotlin/shared/src/commonMain/kotlin/BuiltInConstants.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
package tech.eritquearcus.miraicp.shared
2020

2121
object BuiltInConstants {
22-
const val date = "Sun Apr 09 23:31:15 EDT 2023"
23-
const val version = "2.15.0-RC"
22+
const val date = "Mon Apr 10 00:28:02 EDT 2023"
23+
const val version = "2.15.0-RC2"
2424
const val miraiVersion = "2.15.0-M1"
2525
}

0 commit comments

Comments
 (0)