diff options
| -rwxr-xr-x | tool/make-snapshot | 2 | ||||
| -rw-r--r-- | version.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tool/make-snapshot b/tool/make-snapshot index 131d7b91c9..ec9eb3db35 100755 --- a/tool/make-snapshot +++ b/tool/make-snapshot @@ -52,7 +52,7 @@ PACKAGES = { "zip" => %w".zip zip -Xqr", } DEFAULT_PACKAGES = PACKAGES.keys - ["tar"] -if !$no7z and system("7z", out: IO::NULL) +if !$no7z and system("7z", out: IO::NULL, exception: false) PACKAGES["gzip"] = %w".tar.gz 7z a dummy -tgzip -mx -so" PACKAGES["zip"] = %w".zip 7z a -tzip -l -mx -mtc=off" << {out: IO::NULL} elsif gzip = ENV.delete("GZIP") @@ -12,7 +12,7 @@ # 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 119 +#define RUBY_PATCHLEVEL 120 #define RUBY_RELEASE_YEAR 2021 #define RUBY_RELEASE_MONTH 8 |
