Skip to content

Commit edabafd

Browse files
committed
Drop ruby 3.0 and 3.1 support
1 parent 215dcdc commit edabafd

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/test-on-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ windows-latest ]
12-
ruby: [ '3.0', '3.1', '3.2', '3.3', '3.4' ]
12+
ruby: [ '3.2', '3.3', '3.4' ]
1313
runs-on: ${{ matrix.os }}
1414
steps:
1515
- uses: actions/checkout@v4
@@ -22,4 +22,4 @@ jobs:
2222
- name: Build stub and run tests
2323
run: |
2424
bundle exec rake build
25-
bundle exec rake test
25+
bundle exec rake test

CHANGELOG.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
=== 1.3.18
2+
- Support for Ruby 3.2 and above. Drop ruby 3.0 and 3.1 support.
23
- Suppress user notifications during stub cleanup and log errors to DEBUG output
34
- Fixes issue where two MessageBox dialogs appeared in GUI mode when a signature was not found.
45
- No longer create a marker file when the stub fails to delete the installation directory during cleanup.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ executable that contains the Ruby interpreter, your source code and
1212
any additionally needed ruby libraries or DLL.
1313

1414
OCRAN is a fork of Ocra (https://github.com/larsch/ocra) in order to
15-
maintain compatibility with newer Ruby versions after 3.0
15+
maintain compatibility with newer Ruby versions after 3.2
1616

1717
## Recommended usage
1818
Most commonly you will needs this, when you want to ship your program to windows servers / users that don't have Ruby installed.

ocran.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
1414
spec.description = "OCRAN (One-Click Ruby Application Next) builds Windows executables from Ruby source code.
1515
The executable is a self-extracting, self-running executable that contains the Ruby interpreter, your source code and any additionally needed ruby libraries or DLL.
1616
17-
This is a fork of OCRA that is compatible with ruby version after 3.0.
17+
This is a fork of OCRA that is compatible with ruby version after 3.2.
1818
Migration guide: make sure to write ocran instead of ocra in your code. For instance: OCRAN_EXECUTABLE
1919
2020
usage:
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
2626
This gem contains executables. We plan to build them on github actions for security.
2727
"
2828
spec.homepage = "https://github.com/largo/ocran"
29-
spec.required_ruby_version = ">= 3.0.0"
29+
spec.required_ruby_version = ">= 3.2.0"
3030

3131
spec.metadata["homepage_uri"] = spec.homepage
3232
spec.metadata["source_code_uri"] = "https://github.com/largo/ocran"

0 commit comments

Comments
 (0)