Skip to content

Commit 5b7c623

Browse files
committed
Bump version
1 parent 1f3de9d commit 5b7c623

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

lib/patch_ruby/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
=end
1212

1313
module Patch
14-
VERSION = '1.4.0'
14+
VERSION = '1.5.0'
1515
end

patch_ruby.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
2121
s.platform = Gem::Platform::RUBY
2222
s.authors = ["Patch Technology"]
2323
s.email = ["[email protected]"]
24-
s.homepage = "https://www.usepatch.com"
24+
s.homepage = "https://www.patch.io"
2525
s.summary = "Ruby wrapper for the Patch API"
2626
s.description = "Ruby wrapper for the Patch API"
2727
s.license = 'MIT'

spec/configuration_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
before(:each) do
1919
# uncomment below to setup host and base_path
2020
# require 'URI'
21-
# uri = URI.parse("https://api.usepatch.com")
21+
# uri = URI.parse("https://api.patch.io")
2222
# Patch.configure do |c|
2323
# c.host = uri.host
2424
# c.base_path = uri.path
@@ -28,14 +28,14 @@
2828
describe '#base_url' do
2929
it 'should have the default value' do
3030
# uncomment below to test default value of the base path
31-
# expect(config.base_url).to eq("https://api.usepatch.com")
31+
# expect(config.base_url).to eq("https://api.patch.io")
3232
end
3333

3434
it 'should remove trailing slashes' do
3535
[nil, '', '/', '//'].each do |base_path|
3636
config.base_path = base_path
3737
# uncomment below to test trailing slashes
38-
# expect(config.base_url).to eq("https://api.usepatch.com")
38+
# expect(config.base_url).to eq("https://api.patch.io")
3939
end
4040
end
4141
end

0 commit comments

Comments
 (0)