From e40c5fc26ed96fe18f0e3ed53ff75c9010700966 Mon Sep 17 00:00:00 2001 From: domaindrivendev Date: Fri, 19 May 2017 11:23:03 -0700 Subject: [PATCH] Prep for 1.3.0 --- Gemfile.lock | 6 +++--- rswag-api/lib/rswag/api/version.rb | 2 +- rswag-specs/lib/rswag/specs/version.rb | 2 +- rswag-ui/lib/rswag/ui/version.rb | 2 +- rswag/lib/rswag/version.rb | 2 +- test-app/config/boot.rb | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 8697be9..65cd78f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,13 +1,13 @@ PATH remote: rswag-api specs: - rswag-api (1.2.1) + rswag-api (1.3.0) rails (>= 3.1, < 5.2) PATH remote: rswag-specs specs: - rswag-specs (1.2.1) + rswag-specs (1.3.0) json (~> 1.8) json-schema (~> 2.2) rails (>= 3.1, < 5.2) @@ -16,7 +16,7 @@ PATH PATH remote: rswag-ui specs: - rswag-ui (1.2.1) + rswag-ui (1.3.0) rails (>= 3.1, < 5.2) GEM diff --git a/rswag-api/lib/rswag/api/version.rb b/rswag-api/lib/rswag/api/version.rb index ca2a0e8..5dc9577 100644 --- a/rswag-api/lib/rswag/api/version.rb +++ b/rswag-api/lib/rswag/api/version.rb @@ -1,5 +1,5 @@ module Rswag module Api - VERSION = '1.2.1' + VERSION = '1.3.0' end end diff --git a/rswag-specs/lib/rswag/specs/version.rb b/rswag-specs/lib/rswag/specs/version.rb index fe728f1..2f136b2 100644 --- a/rswag-specs/lib/rswag/specs/version.rb +++ b/rswag-specs/lib/rswag/specs/version.rb @@ -1,5 +1,5 @@ module Rswag module Specs - VERSION = '1.2.1' + VERSION = '1.3.0' end end diff --git a/rswag-ui/lib/rswag/ui/version.rb b/rswag-ui/lib/rswag/ui/version.rb index 9079487..1966406 100644 --- a/rswag-ui/lib/rswag/ui/version.rb +++ b/rswag-ui/lib/rswag/ui/version.rb @@ -1,5 +1,5 @@ module Rswag module Ui - VERSION = '1.2.1' + VERSION = '1.3.0' end end diff --git a/rswag/lib/rswag/version.rb b/rswag/lib/rswag/version.rb index 19b73a9..d903ac6 100644 --- a/rswag/lib/rswag/version.rb +++ b/rswag/lib/rswag/version.rb @@ -1,3 +1,3 @@ module Rswag - VERSION = '1.2.1' + VERSION = '1.3.0' end diff --git a/test-app/config/boot.rb b/test-app/config/boot.rb index eba0681..5ea7451 100644 --- a/test-app/config/boot.rb +++ b/test-app/config/boot.rb @@ -1,5 +1,5 @@ require 'rubygems' -gemfile = File.expand_path('../../../../Gemfile', __FILE__) +gemfile = File.expand_path('../../../Gemfile', __FILE__) if File.exist?(gemfile) ENV['BUNDLE_GEMFILE'] = gemfile @@ -7,4 +7,4 @@ if File.exist?(gemfile) Bundler.setup end -$:.unshift File.expand_path('../../../../lib', __FILE__) \ No newline at end of file +$:.unshift File.expand_path('../../../../lib', __FILE__)