Skip to content

Commit 021f114

Browse files
committed
Release 0.1.0
1 parent b1594bb commit 021f114

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

lib/requests.rb

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,7 @@ def get_url(request_options: nil)
4545

4646
# @return [Hash{String => String}]
4747
def get_headers
48-
headers = {
49-
"X-Fern-Language": "Ruby",
50-
"X-Fern-SDK-Name": "vapi_server_sdk",
51-
"X-Fern-SDK-Version": "0.0.0-alpha7"
52-
}
48+
headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "vapi_server_sdk", "X-Fern-SDK-Version": "0.1.0" }
5349
headers["Authorization"] = ((@token.is_a? Method) ? @token.call : @token) unless @token.nil?
5450
headers
5551
end
@@ -94,11 +90,7 @@ def get_url(request_options: nil)
9490

9591
# @return [Hash{String => String}]
9692
def get_headers
97-
headers = {
98-
"X-Fern-Language": "Ruby",
99-
"X-Fern-SDK-Name": "vapi_server_sdk",
100-
"X-Fern-SDK-Version": "0.0.0-alpha7"
101-
}
93+
headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "vapi_server_sdk", "X-Fern-SDK-Version": "0.1.0" }
10294
headers["Authorization"] = ((@token.is_a? Method) ? @token.call : @token) unless @token.nil?
10395
headers
10496
end

vapi_server_sdk.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ require_relative "lib/gemconfig"
44

55
Gem::Specification.new do |spec|
66
spec.name = "vapi_server_sdk"
7-
spec.version = "0.0.0-alpha7"
7+
spec.version = "0.1.0"
88
spec.authors = Vapi::Gemconfig::AUTHORS
99
spec.email = Vapi::Gemconfig::EMAIL
1010
spec.summary = Vapi::Gemconfig::SUMMARY

0 commit comments

Comments
 (0)