Skip to content

Commit 82f183a

Browse files
committed
chore: bump version to 0.0.24, trigger ci-fresh-install on release
1 parent 0fd1cbd commit 82f183a

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci-fresh-install.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ name: ci-fresh-install
88
# 2. mcpp build (build mcpp itself from source)
99
#
1010
# This workflow tests released mcpp, not PR code.
11-
# It runs on PRs to main, manual trigger, and daily schedule.
11+
# It runs on release publish, manual trigger, and daily schedule.
1212

1313
on:
14-
pull_request:
15-
branches: [ main ]
14+
release:
15+
types: [ published ]
1616
workflow_dispatch:
1717
schedule:
1818
# Run daily at 06:00 UTC to catch issues from xlings/runner updates

mcpp.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mcpp"
3-
version = "0.0.23"
3+
version = "0.0.24"
44
description = "Modern C++ build & package management tool"
55
license = "Apache-2.0"
66
authors = ["mcpp-community"]

src/toolchain/fingerprint.cppm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import mcpp.toolchain.detect;
1818

1919
export namespace mcpp::toolchain {
2020

21-
inline constexpr std::string_view MCPP_VERSION = "0.0.23";
21+
inline constexpr std::string_view MCPP_VERSION = "0.0.24";
2222

2323
struct FingerprintInputs {
2424
Toolchain toolchain;

0 commit comments

Comments
 (0)