Skip to content

Commit

Permalink
docs: update changelog for 0.5.10 (#200)
Browse files Browse the repository at this point in the history
* gem: bump version

* docs: add changelog
  • Loading branch information
q9f authored Jan 4, 2023
1 parent 01061c3 commit fffc8fd
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
# Change Log
All notable changes to this project will be documented in this file.

## [0.5.10]
### Added
* Eth/client: add transfer_erc20 function [#197](https://github.com/q9f/eth.rb/pull/197)
* Eth/client: add resolve_ens function [#192](https://github.com/q9f/eth.rb/pull/192)

### Changed
* Eth/ens: restore docs for normalize [#198](https://github.com/q9f/eth.rb/pull/198)
* Docs: update readme [#195](https://github.com/q9f/eth.rb/pull/195)
* Eth/contract: ensure address arrays support [#194](https://github.com/q9f/eth.rb/pull/194)
* Eth/client: do not allow accessing local accounts on remote connections [#193](https://github.com/q9f/eth.rb/pull/193)
* Eth/client: correctly select functions [#191](https://github.com/q9f/eth.rb/pull/191)
* Docs: create security policy [#190](https://github.com/q9f/eth.rb/pull/190)
* Docs: add contribution guidelines [#189](https://github.com/q9f/eth.rb/pull/189)
* Docs: add coc [#188](https://github.com/q9f/eth.rb/pull/188)
* Docs: update changelog for 0.5.9 [#187](https://github.com/q9f/eth.rb/pull/187)

## [0.5.9]
### Added
* Eth/abi: dynamic struct encoding (#135) [#185](https://github.com/q9f/eth.rb/pull/185)
Expand Down
2 changes: 1 addition & 1 deletion lib/eth/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
module Eth

# Defines the version of the {Eth} module.
VERSION = "0.5.10".freeze
VERSION = "0.5.11".freeze
end
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.10 works" do
it "0.5.11 works" do

# placeholder to set up spec in future
expect(Eth::VERSION).to eq "0.5.10"
expect(Eth::VERSION).to eq "0.5.11"
end
end

0 comments on commit fffc8fd

Please sign in to comment.