Skip to content

Commit

Permalink
Added support for Ruby 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Dec 29, 2024
1 parent 8c17ead commit 5a8a5ce
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
fail-fast: false
matrix:
include:
- ruby: 3.3
- ruby: 3.4
config: example-ignite.xml
- ruby: "3.0"
config: authentication.xml
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.2.1 (unreleased)

- Added support for Ruby 3.4

## 0.2.0 (2023-05-11)

- Dropped support for Ruby < 3
Expand Down
2 changes: 2 additions & 0 deletions ignite-client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ Gem::Specification.new do |spec|
spec.require_path = "lib"

spec.required_ruby_version = ">= 3"

spec.add_dependency "bigdecimal"
end
4 changes: 3 additions & 1 deletion lib/ignite.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# stdlib
# dependencies
require "bigdecimal"

# stdlib
require "date"
require "openssl"
require "socket"
Expand Down

0 comments on commit 5a8a5ce

Please # to comment.