Skip to content

Commit

Permalink
Release 0.0.0-alpha4
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Oct 5, 2024
1 parent 70d700e commit c0b90ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/requests.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def get_url(request_options: nil)

# @return [Hash{String => String}]
def get_headers
headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "vapi", "X-Fern-SDK-Version": "0.0.0-alpha2" }
headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "vapi", "X-Fern-SDK-Version": "0.0.0-alpha4" }
headers["Authorization"] = ((@token.is_a? Method) ? @token.call : @token) unless @token.nil?
headers
end
Expand Down Expand Up @@ -90,7 +90,7 @@ def get_url(request_options: nil)

# @return [Hash{String => String}]
def get_headers
headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "vapi", "X-Fern-SDK-Version": "0.0.0-alpha2" }
headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "vapi", "X-Fern-SDK-Version": "0.0.0-alpha4" }
headers["Authorization"] = ((@token.is_a? Method) ? @token.call : @token) unless @token.nil?
headers
end
Expand Down
2 changes: 1 addition & 1 deletion vapi.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ require_relative "lib/gemconfig"

Gem::Specification.new do |spec|
spec.name = "vapi"
spec.version = "0.0.0-alpha2"
spec.version = "0.0.0-alpha4"
spec.authors = Vapi::Gemconfig::AUTHORS
spec.email = Vapi::Gemconfig::EMAIL
spec.summary = Vapi::Gemconfig::SUMMARY
Expand Down

0 comments on commit c0b90ac

Please sign in to comment.