Skip to content

Commit b1cf51b

Browse files
authored
Merge pull request #109 from rake-compiler/flavorjones-ruby-3.3.0-rc1
update ruby 3.3 support to use Ruby 3.3.0-rc1
2 parents 4e52611 + 732655d commit b1cf51b

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

CONTRIBUTING.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
This document is intended for the rake-compiler-dock contributors.
44

5+
## Cutting a release
6+
7+
- prep
8+
- [ ] make sure CI is green!
9+
- [ ] update `History.md` and `lib/rake_compiler_dock/version.rb`
10+
- build
11+
- [ ] run the steps below to generate the images locally
12+
- [ ] run `gem build rake-compiler-dock`
13+
- [ ] create a git tag
14+
- push
15+
- [ ] run `bundle exec rake release:images`
16+
- [ ] run `gem push pkg/rake-compiler-dock*gem`
17+
- [ ] run `git push && git push --tags`
18+
- announce
19+
- [ ] create a release at https://github.com/rake-compiler/rake-compiler-dock/releases
20+
21+
522
## Building a versioned image
623

724
We want to preserve the cache if we can, so patch releases don't change _all_ the layers. There are a few ways to do this.

Dockerfile.mri.erb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ RUN bash -c " \
142142
axrubies = if platform =~ /x64-mingw-ucrt/
143143
[
144144
# Rubyinstaller-3.1.0+ is platform x64-mingw-ucrt
145-
["3.3.0-preview3:3.2.0:3.1.0", "3.1.3"],
145+
["3.3.0-rc1:3.2.0:3.1.0", "3.1.3"],
146146
]
147147
elsif platform =~ /x64-mingw32/
148148
[
@@ -153,7 +153,7 @@ elsif platform =~ /x64-mingw32/
153153
else
154154
[
155155
["2.6.0:2.5.0:2.4.0", "2.5.9"],
156-
["3.3.0-preview3:3.2.0:3.1.0:3.0.0:2.7.0", "3.1.3"],
156+
["3.3.0-rc1:3.2.0:3.1.0:3.0.0:2.7.0", "3.1.3"],
157157
]
158158
end
159159

History.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1+
1.4.next / unreleased
2+
---------------------
3+
4+
* Add Ruby 3.3.0-rc1 cross-compilation support. (@flavorjones)
5+
6+
17
1.4.0.rc1 / 2023-11-26
2-
-----------------
8+
----------------------
39

410
* Add Ruby 3.3.0-preview3 cross-compilation support. #105 (@flavorjones)
511
* Update to rake-compiler 1.2.5. #108 (@flavorjones)

0 commit comments

Comments
 (0)