[前][次][番号順一覧][スレッド一覧]

ruby-changes:64681

From: nagachika <ko1@a...>
Date: Thu, 31 Dec 2020 15:10:38 +0900 (JST)
Subject: [ruby-changes:64681] e249f37f24 (ruby_2_7): merge revision(s) 45fd4436ee146f95487b1575c5a2df5cf77f4717:

https://git.ruby-lang.org/ruby.git/commit/?id=e249f37f24

From e249f37f24ffa207a5e67f85306f3266aff18429 Mon Sep 17 00:00:00 2001
From: nagachika <nagachika@r...>
Date: Thu, 31 Dec 2020 15:10:19 +0900
Subject: merge revision(s) 45fd4436ee146f95487b1575c5a2df5cf77f4717:

	Use $GITHUB_ENV instead of set-env

	https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/

diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 9159b1a..17d8085 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -40,7 +40,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/macos.yml#L40
           tool/travis_retry.sh brew install gdbm gmp libffi openssl@1... zlib autoconf automake libtool readline
       - name: Set ENV
         run: |
-          echo '::set-env name=JOBS::'-j$((1 + $(sysctl -n hw.activecpu)))
+          echo "JOBS=-j$((1 + $(sysctl -n hw.activecpu)))" >> $GITHUB_ENV
       - name: Autoconf
         run: |
           cd src
diff --git a/.github/workflows/mjit.yml b/.github/workflows/mjit.yml
index e773050..5b662ca 100644
--- a/.github/workflows/mjit.yml
+++ b/.github/workflows/mjit.yml
@@ -40,7 +40,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/mjit.yml#L40
           sudo chmod -R go-w /usr/share
       - name: Set ENV
         run: |
-          echo '::set-env name=JOBS::'-j$((1 + $(nproc --all)))
+          echo "JOBS=-j$((1 + $(nproc --all)))" >> $GITHUB_ENV
       - name: Autoconf
         run: cd src && exec autoconf
       - name: configure
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index 6bf3f29..68f28d7 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -71,7 +71,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/ubuntu.yml#L71
           sudo chmod -R go-w /usr/share
       - name: Set ENV
         run: |
-          echo '::set-env name=JOBS::'-j$((1 + $(nproc --all)))
+          echo "JOBS=-j$((1 + $(nproc --all)))" >> $GITHUB_ENV
       - name: Autoconf
         run: cd src && exec autoconf
       - name: configure
diff --git a/version.h b/version.h
index 94fa4cf..d8c947d 100644
--- a/version.h
+++ b/version.h
@@ -2,11 +2,11 @@ https://github.com/ruby/ruby/blob/trunk/version.h#L2
 # define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR
 #define RUBY_VERSION_TEENY 3
 #define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
-#define RUBY_PATCHLEVEL 140
+#define RUBY_PATCHLEVEL 141
 
 #define RUBY_RELEASE_YEAR 2020
 #define RUBY_RELEASE_MONTH 12
-#define RUBY_RELEASE_DAY 9
+#define RUBY_RELEASE_DAY 31
 
 #include "ruby/version.h"
 
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]