rake-compiler-dock 1.4.0.rc2 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ac069a9e5f009ece2893c2fca76739a63da1de07479c3c42cbccb5cf0d27634
4
- data.tar.gz: c576854edab556b7e1a5f02cdc6ae089b098017e853aeab2b1a61cb1142d1321
3
+ metadata.gz: af056b3eda63fb49781dca44e794b86717ae188d1b7d0862a02d59138bc68a8f
4
+ data.tar.gz: 0bfc11ab05bd86bdef76d552558d5943034aa57f595f9cbbddd43a53f53de571
5
5
  SHA512:
6
- metadata.gz: 678aebb8076cee338bd86a453b080349f8d69f2aaf71a7de28a7882e148b52ffc598f5f9f8ea0047c02618cf714fbda4a6dfa5c2b8550fd970b1fe1d16508fb0
7
- data.tar.gz: ca62298d67de4d9c50a1528c4d048517ab63d69a32d8b7e5029fdada8d21dc4ac12da336d6d2401589c048b0fbdc8fef64c2571db60dc5a34bed2dd3c351195b
6
+ metadata.gz: a6aaeebeede5adb2e6b06baa27bc25ddca831a818994ed3ca59b4e92472470f512dfc690b10257f676c91ba1809a0cb66e06731feed36c9fbcfbacd17cd14da1
7
+ data.tar.gz: 2a29130b0868d9433ebc7c3978de4c95c7809aaf2edda716c945d9dd2e048c63f924b296848ce384500ec959a654f275f6c4552872cb8f0793aec17ab3ec1438
@@ -52,7 +52,7 @@ jobs:
52
52
 
53
53
  - uses: ruby/setup-ruby@v1
54
54
  with:
55
- ruby-version: "3.0"
55
+ ruby-version: "3.2"
56
56
  bundler-cache: true # runs 'bundle install' and caches installed gems automatically
57
57
 
58
58
  - name: Build docker image
@@ -120,7 +120,8 @@ jobs:
120
120
  os:
121
121
  - ubuntu
122
122
  ruby:
123
- - "head" # 3.3
123
+ - "head"
124
+ - "3.3"
124
125
  - "3.2"
125
126
  - "3.1"
126
127
  - "3.0"
@@ -158,6 +159,7 @@ jobs:
158
159
  - ubuntu
159
160
  ruby:
160
161
  - "head" # 3.3
162
+ - "3.3"
161
163
  - "3.2"
162
164
  - "3.1"
163
165
  - "3.0"
@@ -181,6 +183,9 @@ jobs:
181
183
  - os: windows
182
184
  ruby: "3.2"
183
185
  platform: x64-mingw-ucrt
186
+ - os: windows
187
+ ruby: "3.3"
188
+ platform: x64-mingw-ucrt
184
189
  - os: windows
185
190
  ruby: "head"
186
191
  platform: x64-mingw-ucrt
@@ -189,6 +194,8 @@ jobs:
189
194
  ruby: "3.1"
190
195
  - os: windows
191
196
  ruby: "3.2"
197
+ - os: windows
198
+ ruby: "3.3"
192
199
  - os: windows
193
200
  ruby: "head"
194
201
 
@@ -220,7 +227,8 @@ jobs:
220
227
  os:
221
228
  - windows
222
229
  ruby:
223
- - "head" # 3.3
230
+ - "head"
231
+ - "3.3"
224
232
  - "3.2"
225
233
  - "3.1"
226
234
  - "3.0"
@@ -237,6 +245,9 @@ jobs:
237
245
  - os: windows
238
246
  ruby: "3.2"
239
247
  platform: x64-mingw-ucrt
248
+ - os: windows
249
+ ruby: "3.3"
250
+ platform: x64-mingw-ucrt
240
251
  - os: windows
241
252
  ruby: "head"
242
253
  platform: x64-mingw-ucrt
@@ -245,6 +256,8 @@ jobs:
245
256
  ruby: "3.1"
246
257
  - os: windows
247
258
  ruby: "3.2"
259
+ - os: windows
260
+ ruby: "3.3"
248
261
  - os: windows
249
262
  ruby: "head"
250
263
 
data/CONTRIBUTING.md CHANGED
@@ -5,14 +5,14 @@ This document is intended for the rake-compiler-dock contributors.
5
5
  ## Cutting a release
6
6
 
7
7
  - prep
8
- - [x] make sure CI is green!
8
+ - [ ] make sure CI is green!
9
9
  - [x] update `History.md` and `lib/rake_compiler_dock/version.rb`
10
10
  - build
11
- - [ ] run the steps below to generate the images locally
12
- - [ ] run `gem build rake-compiler-dock`
13
- - [ ] create a git tag
11
+ - [x] run the steps below to generate the images locally
12
+ - [x] run `gem build rake-compiler-dock`
13
+ - [x] create a git tag
14
14
  - push
15
- - [ ] run `bundle exec rake release:images`
15
+ - [x] run `bundle exec rake release:images`
16
16
  - [ ] run `gem push pkg/rake-compiler-dock*gem`
17
17
  - [ ] run `git push && git push --tags`
18
18
  - announce
data/Dockerfile.jruby CHANGED
@@ -1,4 +1,4 @@
1
- FROM ubuntu:20.04
1
+ FROM ubuntu:20.04@sha256:ed4a42283d9943135ed87d4ee34e542f7f5ad9ecf2f244870e23122f703f91c2
2
2
 
3
3
  ENV DEBIAN_FRONTEND noninteractive
4
4
  RUN apt-get -y update && \
data/History.md CHANGED
@@ -1,12 +1,7 @@
1
- 1.4.0.rc2 / 2023-12-12
2
- ---------------------
3
-
4
- * Add Ruby 3.3.0-rc1 cross-compilation support. (@flavorjones)
5
-
6
-
7
- 1.4.0.rc1 / 2023-11-26
8
- ----------------------
1
+ 1.4.0 / 2023-12-26
2
+ ------------------
9
3
 
4
+ * Add Ruby 3.3.0-rc1 cross-compilation support. #109, #105 (@flavorjones)
10
5
  * Add Ruby 3.3.0-preview3 cross-compilation support. #105 (@flavorjones)
11
6
  * Update to rake-compiler 1.2.5. #108 (@flavorjones)
12
7
 
@@ -1,4 +1,4 @@
1
1
  module RakeCompilerDock
2
- VERSION = "1.4.0.rc2"
3
- IMAGE_VERSION = "1.4.0.rc2"
2
+ VERSION = "1.4.0"
3
+ IMAGE_VERSION = "1.4.0"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rake-compiler-dock
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0.rc2
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lars Kanis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-13 00:00:00.000000000 Z
11
+ date: 2023-12-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -137,9 +137,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
137
137
  version: '0'
138
138
  required_rubygems_version: !ruby/object:Gem::Requirement
139
139
  requirements:
140
- - - ">"
140
+ - - ">="
141
141
  - !ruby/object:Gem::Version
142
- version: 1.3.1
142
+ version: '0'
143
143
  requirements: []
144
144
  rubygems_version: 3.4.19
145
145
  signing_key: