aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/macos.yml2
-rw-r--r--.github/workflows/mjit.yml2
-rw-r--r--.github/workflows/ubuntu.yml2
-rw-r--r--version.h4
4 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 9159b1aeb0..17d8085707 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -40,7 +40,7 @@ jobs:
tool/travis_retry.sh brew install gdbm gmp libffi openssl@1.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 e7730506d2..5b662caa14 100644
--- a/.github/workflows/mjit.yml
+++ b/.github/workflows/mjit.yml
@@ -40,7 +40,7 @@ jobs:
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 6bf3f291a6..68f28d7b40 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -71,7 +71,7 @@ jobs:
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 94fa4cf5d3..d8c947dac3 100644
--- a/version.h
+++ b/version.h
@@ -2,11 +2,11 @@
# 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"