Skip to content

Commit a801a96

Browse files
committed
version bump 👆🏾
1 parent 5d4ea7c commit a801a96

File tree

5 files changed

+37
-36
lines changed

5 files changed

+37
-36
lines changed

Gemfile.lock

Lines changed: 33 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
azure_app_config (1.0)
4+
azure_app_config (1.1.1)
55

66
GEM
77
remote: https://rubygems.org/
@@ -10,70 +10,71 @@ GEM
1010
public_suffix (>= 2.0.2, < 6.0)
1111
ast (2.4.2)
1212
base64 (0.2.0)
13-
bigdecimal (3.1.5)
14-
crack (0.4.5)
13+
bigdecimal (3.1.8)
14+
crack (1.0.0)
15+
bigdecimal
1516
rexml
16-
debug (1.9.1)
17+
debug (1.9.2)
1718
irb (~> 1.10)
1819
reline (>= 0.3.8)
19-
diff-lcs (1.5.0)
20+
diff-lcs (1.5.1)
2021
dotenv (2.8.1)
2122
hashdiff (1.1.0)
22-
io-console (0.7.1)
23-
irb (1.11.0)
24-
rdoc
25-
reline (>= 0.3.8)
26-
json (2.7.1)
23+
io-console (0.7.2)
24+
irb (1.13.1)
25+
rdoc (>= 4.0.0)
26+
reline (>= 0.4.2)
27+
json (2.7.2)
2728
language_server-protocol (3.17.0.3)
2829
parallel (1.24.0)
29-
parser (3.3.0.2)
30+
parser (3.3.1.0)
3031
ast (~> 2.4.1)
3132
racc
3233
psych (5.1.2)
3334
stringio
34-
public_suffix (5.0.4)
35+
public_suffix (5.0.5)
3536
racc (1.7.3)
3637
rainbow (3.1.1)
37-
rake (13.1.0)
38+
rake (13.2.1)
3839
rdoc (6.6.3.1)
3940
psych (>= 4.0.0)
40-
regexp_parser (2.9.0)
41-
reline (0.4.2)
41+
regexp_parser (2.9.2)
42+
reline (0.5.7)
4243
io-console (~> 0.5)
4344
rexml (3.2.8)
4445
strscan (>= 3.0.9)
45-
rspec (3.12.0)
46-
rspec-core (~> 3.12.0)
47-
rspec-expectations (~> 3.12.0)
48-
rspec-mocks (~> 3.12.0)
49-
rspec-core (3.12.2)
50-
rspec-support (~> 3.12.0)
51-
rspec-expectations (3.12.3)
46+
rspec (3.13.0)
47+
rspec-core (~> 3.13.0)
48+
rspec-expectations (~> 3.13.0)
49+
rspec-mocks (~> 3.13.0)
50+
rspec-core (3.13.0)
51+
rspec-support (~> 3.13.0)
52+
rspec-expectations (3.13.0)
5253
diff-lcs (>= 1.2.0, < 2.0)
53-
rspec-support (~> 3.12.0)
54-
rspec-mocks (3.12.6)
54+
rspec-support (~> 3.13.0)
55+
rspec-mocks (3.13.1)
5556
diff-lcs (>= 1.2.0, < 2.0)
56-
rspec-support (~> 3.12.0)
57-
rspec-support (3.12.1)
58-
rubocop (1.59.0)
57+
rspec-support (~> 3.13.0)
58+
rspec-support (3.13.1)
59+
rubocop (1.63.5)
5960
json (~> 2.3)
6061
language_server-protocol (>= 3.17.0)
6162
parallel (~> 1.10)
62-
parser (>= 3.2.2.4)
63+
parser (>= 3.3.0.2)
6364
rainbow (>= 2.2.2, < 4.0)
6465
regexp_parser (>= 1.8, < 3.0)
6566
rexml (>= 3.2.5, < 4.0)
66-
rubocop-ast (>= 1.30.0, < 2.0)
67+
rubocop-ast (>= 1.31.1, < 2.0)
6768
ruby-progressbar (~> 1.7)
6869
unicode-display_width (>= 2.4.0, < 3.0)
69-
rubocop-ast (1.30.0)
70-
parser (>= 3.2.1.0)
70+
rubocop-ast (1.31.3)
71+
parser (>= 3.3.1.0)
7172
ruby-progressbar (1.13.0)
7273
stringio (3.1.0)
7374
strscan (3.1.0)
7475
unicode-display_width (2.5.0)
7576
vcr (6.2.0)
76-
webmock (3.19.1)
77+
webmock (3.23.0)
7778
addressable (>= 2.8.0)
7879
crack (>= 0.3.2)
7980
hashdiff (>= 0.4.0, < 2.0.0)

lib/azure_app_config.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require_relative "azure_app_config/base"
44

55
module AzureAppConfig
6-
VERSION = "1.1.0"
6+
VERSION = "1.1.1"
77

88
class InvalidTypeError < StandardError; end
99
class ExceededLimitError < StandardError; end

lib/azure_app_config/base.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def fetch(name, label: nil)
3838
end
3939

4040
def labels(name: nil)
41-
name, _ = normalise_parameters(name: name, label: nil)
41+
name, = normalise_parameters(name: name, label: nil)
4242
path = "/labels"
4343

4444
query_params = URI.encode_www_form(name: name.join(","))

spec/azure_app_config/base_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@
342342
end
343343

344344
describe "as array" do
345-
let(:name) { ["prod", "test"] }
345+
let(:name) { %w[prod test] }
346346

347347
it "returns matching labels" do
348348
VCR.use_cassette("labels/with_name_param_as_array") do

spec/azure_app_config_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
RSpec.describe AzureAppConfig do
44
it "has a version number" do
5-
expect(AzureAppConfig::VERSION).to be "1.0"
5+
expect(AzureAppConfig::VERSION).to be "1.1.1"
66
end
77
end

0 commit comments

Comments
 (0)