Skip to content

Commit 1eace18

Browse files
fixes
1 parent 4f31762 commit 1eace18

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ gemspec
88
gem "rake", "~> 13.0"
99

1010
gem "rspec", "~> 3.0"
11-
gem "standard", "~> 1.28.0"
11+
gem "standard", "~> 1.28.0"

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
cohere-ruby (0.9.0)
4+
cohere-ruby (0.9.1)
55
faraday (~> 2.7.0)
66

77
GEM

lib/cohere/client.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ def summarize(
126126

127127
private
128128

129+
# standard:disable Lint/DuplicateMethods
129130
def connection
130131
@connection ||= Faraday.new(url: ENDPOINT_URL) do |faraday|
131132
if api_key
@@ -136,5 +137,6 @@ def connection
136137
faraday.adapter Faraday.default_adapter
137138
end
138139
end
140+
# standard:enable Lint/DuplicateMethods
139141
end
140142
end

lib/cohere/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Cohere
4-
VERSION = "0.9.0"
4+
VERSION = "0.9.1"
55
end

0 commit comments

Comments
 (0)