diff --git a/README.md b/README.md index e88d8d8..872caed 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ Ruby bindings to the [libuplink](https://github.com/storj/uplink-c) Storj API li * Clone [uplink-c](https://github.com/storj/uplink-c) repository. * Check out the release version `v1.7.0`. ```bash + $ git fetch --tags $ git checkout tags/v1.7.0 ``` * Run `make build` to build the uplink-c library. @@ -22,7 +23,7 @@ Ruby bindings to the [libuplink](https://github.com/storj/uplink-c) Storj API li Add this line to your application's Gemfile: ```ruby -gem 'uplink-ruby', '~> 1.0' +gem 'uplink-ruby', '~> 1.7.0' ``` ### Running the Tests diff --git a/uplink-ruby.gemspec b/uplink-ruby.gemspec index 1c92f6c..05d6afb 100644 --- a/uplink-ruby.gemspec +++ b/uplink-ruby.gemspec @@ -2,11 +2,11 @@ Gem::Specification.new do |s| s.name = 'uplink-ruby' - s.version = '1.0.0' + s.version = '1.7.0' s.summary = 'libuplink bindings for ruby' s.description = 'Ruby bindings to the libuplink C Storj API library' s.authors = ['Your Data Inc'] - s.homepage = 'https://github.com/Your-Data/uplink-ruby' + s.homepage = 'https://github.com/storj-thirdparty/uplink-ruby' s.license = 'MIT' s.files = Dir['lib/**/*.rb'] s.required_ruby_version = '>= 2.6.0'