From ac6466b8f833b8c211a3e2fe8e6749fac8996158 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Thu, 1 Apr 2021 16:12:44 +0200 Subject: [PATCH 1/4] CI: Add "3.0" to matrix --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b0893f1..2fd95db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,7 @@ jobs: - macos-10.15 - windows-latest ruby: + - '3.0' - 2.7 - 2.6 - 2.5 From eeeaa5ac27f685b4cbdd0100a92b46a65bbd2cc5 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Thu, 1 Apr 2021 16:55:11 +0200 Subject: [PATCH 2/4] CI matrix: add Ubuntu20+head --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2fd95db..ac0d4e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,7 @@ jobs: - 2.3 - debug include: + - { os: ubuntu-20.04 , ruby: head } - { os: windows-latest , ruby: mingw } - { os: windows-latest , ruby: mswin } exclude: From d2606b2cce81e24da941d7892e9feeaddc4d35a9 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Thu, 1 Apr 2021 17:33:35 +0200 Subject: [PATCH 3/4] Experiment: bump patch version This is a test, to see if the build failures are about the shipped Ruby master version of this gem. --- digest.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/digest.gemspec b/digest.gemspec index 6f3bf8b..5eaca94 100644 --- a/digest.gemspec +++ b/digest.gemspec @@ -3,7 +3,7 @@ Gem::Specification.new do |spec| spec.name = "digest" - spec.version = "3.0.0" + spec.version = "3.0.1" spec.authors = ["Akinori MUSHA"] spec.email = ["knu@idaemons.org"] From 2bb5bb78a3118f2a38505a566c793c9a1320e9a9 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Tue, 6 Apr 2021 12:39:24 +0200 Subject: [PATCH 4/4] Experiment: Use a .pre version in gemspec This makes it slightly more explicit that this is not a definite new version. --- digest.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/digest.gemspec b/digest.gemspec index 5eaca94..a377aef 100644 --- a/digest.gemspec +++ b/digest.gemspec @@ -3,7 +3,7 @@ Gem::Specification.new do |spec| spec.name = "digest" - spec.version = "3.0.1" + spec.version = "3.0.1.pre" spec.authors = ["Akinori MUSHA"] spec.email = ["knu@idaemons.org"]