Skip to content

Commit

Permalink
bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
xinghengwang committed Nov 18, 2024
1 parent 9e97656 commit 44f1912
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/moesif_api/configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ class Configuration
# Your Application Id for authentication/authorization
@application_id = 'SET_ME'

@version = '2.1.1'
@version = '2.1.2'

@user_agent = "moesifapi-ruby/2.1.1"
@user_agent = "moesifapi-ruby/2.1.2"

@retry_count = 5

Expand Down
2 changes: 1 addition & 1 deletion lib/moesif_api/controllers/base_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def build_request_headers

def validate_response(context)
return if context.response.status_code.between?(200, 208) # [200,208] = HTTP OK
res = context.response;
res = context.response

if res.nil?
raise APIException.new 'No Http Response, maybe timeout', context
Expand Down
2 changes: 1 addition & 1 deletion moesif_api.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'moesif_api'
s.version = '2.1.1'
s.version = '2.1.2'
s.summary = 'moesif_api'
s.description = 'Collection/Data Ingestion API'
s.authors = ['Moesif, Inc', 'Derric Gilling']
Expand Down

0 comments on commit 44f1912

Please sign in to comment.