summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornagachika <nagachika@ruby-lang.org>2022-02-13 14:20:41 +0900
committernagachika <nagachika@ruby-lang.org>2022-02-13 14:20:41 +0900
commit0b45ce2ad03614339e691826c0e65ca3bf2a1970 (patch)
treea84b540a3d9888d5d09a3720f0ea28ebf37ed924
parent62c2414bd94b895d231a7766d7b0a8b29eb7f80e (diff)
merge revision(s) 63358581bca80c7a885228ac841b0ae9c4ca11b5:
Fix weird MinGW failure notifications It's been "MinGW / Array", but it will be "MinGW MINGW64 / check" or "MinGW UCRT64 / check" by this. --- .github/workflows/mingw.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
-rw-r--r--.github/workflows/mingw.yml2
-rw-r--r--version.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml
index 7cbf4c19a6..830141cc03 100644
--- a/.github/workflows/mingw.yml
+++ b/.github/workflows/mingw.yml
@@ -127,7 +127,7 @@ jobs:
payload: |
{
"ci": "GitHub Actions",
- "env": "${{ github.workflow }} / ${{ matrix.test_task }}",
+ "env": "${{ github.workflow }} ${{ matrix.msystem }} / ${{ join(matrix.test_task) }}",
"url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}",
"commit": "${{ github.sha }}",
"branch": "${{ github.ref }}".split('/').reverse()[0]
diff --git a/version.h b/version.h
index 24cf5489ea..b7205ee891 100644
--- a/version.h
+++ b/version.h
@@ -12,7 +12,7 @@
# define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR
#define RUBY_VERSION_TEENY 4
#define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
-#define RUBY_PATCHLEVEL 168
+#define RUBY_PATCHLEVEL 169
#define RUBY_RELEASE_YEAR 2022
#define RUBY_RELEASE_MONTH 2