Skip to content

Commit 31fa1ff

Browse files
committed
bump to 0.0.3
1 parent 88dae9d commit 31fa1ff

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ gemspec
66

77
group :test, :development do
88
gem 'pry-byebug', '~> 3.10', '>= 3.10.1'
9-
gem 'rubocop', '~> 1.44'
9+
gem 'rubocop', '~> 1.44', '>= 1.44.1'
1010
gem 'rubocop-rake', '~> 0.6.0'
1111
end

Gemfile.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
lnd-client (0.0.2)
4+
lnd-client (0.0.3)
55
grpc (~> 1.51)
66

77
GEM
@@ -30,7 +30,7 @@ GEM
3030
rainbow (3.1.1)
3131
regexp_parser (2.6.2)
3232
rexml (3.2.5)
33-
rubocop (1.44.0)
33+
rubocop (1.44.1)
3434
json (~> 2.3)
3535
parallel (~> 1.10)
3636
parser (>= 3.2.0.0)
@@ -53,7 +53,7 @@ PLATFORMS
5353
DEPENDENCIES
5454
lnd-client!
5555
pry-byebug (~> 3.10, >= 3.10.1)
56-
rubocop (~> 1.44)
56+
rubocop (~> 1.44, >= 1.44.1)
5757
rubocop-rake (~> 0.6.0)
5858

5959
BUNDLED WITH

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
Add to your `Gemfile`:
1515

1616
```ruby
17-
gem 'lnd-client', '~> 0.0.2'
17+
gem 'lnd-client', '~> 0.0.3'
1818
```
1919

2020
```ruby
2121
require 'lnd-client'
2222

23-
puts LNDClient.version # => 0.0.2
23+
puts LNDClient.version # => 0.0.3
2424

2525
client = LNDClient.new(
2626
certificate_path: '/lnd/tls.cert',
@@ -56,7 +56,7 @@ end
5656
```ruby
5757
require 'lnd-client'
5858

59-
puts LNDClient.version # => 0.0.2
59+
puts LNDClient.version # => 0.0.3
6060

6161
client = LNDClient.new(
6262
certificate_path: '/lnd/tls.cert',
@@ -79,7 +79,7 @@ graph.edges # => [...]
7979
```ruby
8080
require 'lnd-client'
8181

82-
puts LNDClient.version # => 0.0.2
82+
puts LNDClient.version # => 0.0.3
8383

8484
client = LNDClient.new(
8585
certificate_path: '/lnd/tls.cert',
@@ -146,5 +146,5 @@ gem build lnd-client.gemspec
146146

147147
gem signin
148148

149-
gem push lnd-client-0.0.2.gem
149+
gem push lnd-client-0.0.3.gem
150150
```

static/spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module Static
44
SPEC = {
55
name: 'lnd-client',
6-
version: '0.0.2',
6+
version: '0.0.3',
77
author: 'icebaker',
88
summary: 'Ruby Lightning Network Daemon (lnd) Client',
99
description: 'Ruby Lightning Network Daemon (lnd) Client',

0 commit comments

Comments
 (0)