8000 gem: bump version to 0.5.13 by q9f · Pull Request #281 · q9f/eth.rb · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

gem: bump version to 0.5.13 #281

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,27 @@ All notable changes to this project will be documented in this file.

## [0.5.12]
### Added
* Allow to call JSON RPC with custom block number [#268](https://github.com/q9f/eth.rb/pull/268)
* Support tuple params in EventLog [#276](https://github.com/q9f/eth.rb/pull/276)

### Changed
* Eth: update version [#280](https://github.com/q9f/eth.rb/pull/280)
* Eth/abi: fix negative integer coding [#279](https://github.com/q9f/eth.rb/pull/279)
* Support negative number from JSON RPC [#267](https://github.com/q9f/eth.rb/pull/267)
* Abi/event: confirm decoding tuples works [#278](https://github.com/q9f/eth.rb/pull/278)
* Allow to call JSON RPC with custom block number [#268](https://github.com/q9f/eth.rb/pull/268)
* Gem: run rufo [#277](https://github.com/q9f/eth.rb/pull/277)
* Fix event signature [#250](https://github.com/q9f/eth.rb/pull/250)
* Support tuple params in EventLog [#276](https://github.com/q9f/eth.rb/pull/276)
* Ci: update ruby version [#271](https://github.com/q9f/eth.rb/pull/271)
* Eth/api: remove coinbase as default account [#269](https://github.com/q9f/eth.rb/pull/269)
* Build(deps): bump JamesIves/github-pages-deploy-action from 4.5.0 to 4.6.1 [#275](https://github.com/q9f/eth.rb/pull/275)
* Build(deps): bump github/codeql-action from 2 to 3 [#257](https://github.com/q9f/eth.rb/pull/257)
* Build(deps): bump JamesIves/github-pages-deploy-action from 4.4.3 to 4.5.0 [#256](https://github.com/q9f/eth.rb/pull/256)
* Fix typo in contract_spec.rb [#253](https://github.com/q9f/eth.rb/pull/253)
* Eth/eip721: fix data type bug for bytes, fix #251 [#252](https://github.com/q9f/eth.rb/pull/252)
* Ci: unpatch geth [#248](https://github.com/q9f/eth.rb/pull/248)
* Build(deps): bump actions/checkout from 3 to 4 [#246](https://github.com/q9f/eth.rb/pull/246)

## [0.5.11]
### Added
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Supported Versions

Ruby Ethereum 0.5.0 is a complete rewrite of the old `eth` 0.4.x gem.
Ruby Ethereum 0.5.x is a complete rewrite of the old `eth` 0.4.x gem.
It also contains modules from `abi`, `rlp` and the `ethereum` gem.

None of these gems are maintained anymore except for `eth` 0.5.0 and
Expand Down
2 changes: 1 addition & 1 deletion eth.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep %r{^(test|spec|features)/}

spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = ">= 2.7", "< 4.0"
spec.required_ruby_version = ">= 3.0", "< 4.0"

# forwardable for contracts meta programming
spec.add_dependency "forwardable", "~> 1.3"
Expand Down
2 changes: 1 addition & 1 deletion lib/eth/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module Eth
MINOR = 5.freeze

# Defines the patch version of the {Eth} module.
PATCH = 12.freeze
PATCH = 13.freeze

# Defines the version string of the {Eth} module.
VERSION = [MAJOR, MINOR, PATCH].join(".").freeze
Expand Down
4 changes: 2 additions & 2 deletions spec/eth_spec.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
require "spec_helper"

describe Eth do
it "0.5.12 works" do
it "0.5.13 works" do

# placeholder to set up spec in future
expect(Eth::VERSION).to eq "0.5.12"
expect(Eth::VERSION).to eq "0.5.13"
end
end
Loading
0