Skip to content

Commit 21b94bc

Browse files
nobukddnewton
authored andcommitted
Move gemfiles for 3.5 to 4.0
1 parent a3850e7 commit 21b94bc

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ updates:
2424
- '/gemfiles/3.2'
2525
- '/gemfiles/3.3'
2626
- '/gemfiles/3.4'
27-
- '/gemfiles/3.5'
27+
- '/gemfiles/4.0'
2828
- '/gemfiles/jruby'
2929
- '/gemfiles/truffleruby'
3030
- '/gemfiles/typecheck'

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
fail-fast: false
105105
matrix:
106106
target:
107-
- { ruby: "head", gemfile: "3.5" }
107+
- { ruby: "head", gemfile: "4.0" }
108108
- { ruby: "jruby-10.0.0.0", gemfile: "jruby" } # https://github.com/jruby/jruby/issues/8923
109109
- { ruby: "truffleruby", gemfile: "truffleruby" }
110110
runs-on: ubuntu-latest
@@ -275,7 +275,7 @@ jobs:
275275
- { ruby: "3.2", os: "ubuntu-latest", gemfile: "3.2" }
276276
- { ruby: "3.3", os: "ubuntu-latest", gemfile: "3.3" }
277277
- { ruby: "3.4", os: "ubuntu-latest", gemfile: "3.4" }
278-
- { ruby: "head", os: "ubuntu-latest", gemfile: "3.5" }
278+
- { ruby: "head", os: "ubuntu-latest", gemfile: "4.0" }
279279
- { ruby: "jruby-10.0.0.0", os: "ubuntu-latest", gemfile: "jruby" } # https://github.com/jruby/jruby/issues/8923
280280
- { ruby: "truffleruby", os: "ubuntu-latest", gemfile: "truffleruby" }
281281

@@ -285,7 +285,7 @@ jobs:
285285
- { ruby: "3.2", os: "macos-latest", gemfile: "3.2" }
286286
- { ruby: "3.3", os: "macos-latest", gemfile: "3.3" }
287287
- { ruby: "3.4", os: "macos-latest", gemfile: "3.4" }
288-
- { ruby: "head", os: "macos-latest", gemfile: "3.5" }
288+
- { ruby: "head", os: "macos-latest", gemfile: "4.0" }
289289
- { ruby: "jruby-10.0.0.0", os: "macos-latest", gemfile: "jruby" } # https://github.com/jruby/jruby/issues/8923
290290
- { ruby: "truffleruby", os: "macos-latest", gemfile: "truffleruby" }
291291

@@ -295,7 +295,7 @@ jobs:
295295
- { ruby: "3.2", os: "windows-latest", gemfile: "3.2" }
296296
- { ruby: "3.3", os: "windows-latest", gemfile: "3.3" }
297297
- { ruby: "3.4", os: "windows-latest", gemfile: "3.4" }
298-
- { ruby: "head", os: "windows-latest", gemfile: "3.5" }
298+
- { ruby: "head", os: "windows-latest", gemfile: "4.0" }
299299
- { ruby: "jruby-10.0.0.0", os: "windows-latest", gemfile: "jruby" } # https://github.com/jruby/jruby/issues/8923
300300
env:
301301
BUNDLE_GEMFILE: gemfiles/${{ matrix.target.gemfile }}/Gemfile

docs/releasing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ ruby -pi -e 'gsub(/^ruby-prism-sys = \{ version = ".+?"/, %Q{ruby-prism-sys = \{
4040
* Update the `Gemfile.lock` file:
4141

4242
```sh
43-
chruby ruby-3.5.0-dev
43+
chruby ruby-4.0.0-dev
4444
bundle install
4545
```
4646

4747
* Update the version-specific lockfiles:
4848

4949
```sh
5050
for VERSION in "2.7" "3.0" "3.1" "3.2" "3.3" "3.4"; do docker run -it --rm -v "$PWD":/usr/src/app -w /usr/src/app -e BUNDLE_GEMFILE="gemfiles/$VERSION/Gemfile" "ruby:$VERSION" bundle update; done
51-
docker run -it --rm -v "$PWD":/usr/src/app -w /usr/src/app -e BUNDLE_GEMFILE="gemfiles/3.5/Gemfile" ruby:3.5.0-preview1 bundle update
51+
docker run -it --rm -v "$PWD":/usr/src/app -w /usr/src/app -e BUNDLE_GEMFILE="gemfiles/4.0/Gemfile" ruby:4.0.0-preview2 bundle update
5252
docker run -it --rm -v "$PWD":/usr/src/app -w /usr/src/app -e BUNDLE_GEMFILE="gemfiles/jruby/Gemfile" jruby:latest bundle update
5353
BUNDLE_GEMFILE=gemfiles/truffleruby/Gemfile chruby-exec truffleruby -- bundle update
5454
```

0 commit comments

Comments
 (0)