Skip to content

Commit 13725a8

Browse files
Release 0.0.2
1 parent b2f5eaa commit 13725a8

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

.fern/metadata.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
2-
"cliVersion": "4.62.4",
2+
"cliVersion": "4.63.5",
33
"generatorName": "fernapi/fern-ruby-sdk",
4-
"generatorVersion": "1.1.11",
4+
"generatorVersion": "1.1.13",
55
"generatorConfig": {
6-
"clientClassName": "Vapi"
6+
"clientClassName": "Vapi",
7+
"rubocopVariableNumberStyle": "disabled"
78
},
8-
"originGitCommit": "609e140e6338ba929ae7f23a23046ea7dc777b07",
9-
"sdkVersion": "0.0.1"
9+
"originGitCommit": "7591bf8b30e72582058dff6b163b9380e1038aec",
10+
"sdkVersion": "0.0.2"
1011
}

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Layout/LineLength:
4545
Enabled: false
4646

4747
Naming/VariableNumber:
48-
EnforcedStyle: normalcase
48+
Enabled: false
4949

5050
Style/Documentation:
5151
Enabled: false

Gemfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
vapi-server-sdk (0.0.0.pre.fern.pre.placeholder)
4+
vapi-server-sdk (0.0.2)
55

66
GEM
77
remote: https://rubygems.org/
@@ -23,7 +23,7 @@ GEM
2323
minitest (5.27.0)
2424
minitest-rg (5.4.0)
2525
minitest (>= 5.0, < 7)
26-
parallel (1.28.0)
26+
parallel (2.0.1)
2727
parser (3.3.11.1)
2828
ast (~> 2.4.1)
2929
racc
@@ -40,11 +40,11 @@ GEM
4040
reline (0.6.3)
4141
io-console (~> 0.5)
4242
rexml (3.4.4)
43-
rubocop (1.86.0)
43+
rubocop (1.86.1)
4444
json (~> 2.3)
4545
language_server-protocol (~> 3.17.0.2)
4646
lint_roller (~> 1.1.0)
47-
parallel (~> 1.10)
47+
parallel (>= 1.10)
4848
parser (>= 3.3.0.2)
4949
rainbow (>= 2.2.2, < 4.0)
5050
regexp_parser (>= 2.9.3, < 3.0)

lib/vapi/client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def initialize(token:, base_url: nil)
1010
@raw_client = Vapi::Internal::Http::RawClient.new(
1111
base_url: base_url || Vapi::Environment::DEFAULT,
1212
headers: {
13-
"User-Agent" => "vapi-server-sdk/0.0.1",
13+
"User-Agent" => "vapi-server-sdk/0.0.2",
1414
"X-Fern-Language" => "Ruby",
1515
Authorization: "Bearer #{token}"
1616
}

lib/vapi/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 Vapi
4-
VERSION = "0.0.1"
4+
VERSION = "0.0.2"
55
end

0 commit comments

Comments
 (0)