From de8bff59f83bc3aa53c2e977304061ac73a5c71f Mon Sep 17 00:00:00 2001 From: Eugenia Dellapenna <eugenia@medium.com> Date: Thu, 26 Feb 2015 14:08:27 -0800 Subject: [PATCH] Bump version to 0.7.0 since testflightapp.com is officially gone :cry: --- README.md | 2 +- lib/config/thrust_example.yml | 2 +- lib/thrust/config_loader.rb | 2 +- spec/lib/thrust/config_loader_spec.rb | 4 ++-- thrust.gemspec | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 0e68df7..67db779 100644 --- a/README.md +++ b/README.md @@ -114,7 +114,7 @@ The Apple ID is a unique identifier assigned to your app in iTunes Connect. Fin ## Example thrust.yml for iOS ```yaml -thrust_version: 0.6 +thrust_version: 0.7 project_name: My Great Project # do not use if building with an xcode workspace # workspace_name: My Workspace # use if building with an xcode workspace # path_to_xcodeproj: 'App/MyApp.xcodeproj' # use if xcodeproj is not in the same directory as this yaml file. Optional. diff --git a/lib/config/thrust_example.yml b/lib/config/thrust_example.yml index cbd4a23..820d9a6 100644 --- a/lib/config/thrust_example.yml +++ b/lib/config/thrust_example.yml @@ -1,4 +1,4 @@ -thrust_version: 0.6 +thrust_version: 0.7 project_name: My Great Project # do not use if building with an xcode workspace # workspace_name: My Workspace # use if building with an xcode workspace # path_to_xcodeproj: 'App/MyApp.xcodeproj' # use if xcodeproj is not in the same directory as this yaml file. Optional. diff --git a/lib/thrust/config_loader.rb b/lib/thrust/config_loader.rb index 2b98049..f50246a 100644 --- a/lib/thrust/config_loader.rb +++ b/lib/thrust/config_loader.rb @@ -9,7 +9,7 @@ class MissingConfigError < ConfigError ; end class MalformedConfigError < ConfigError ; end class InvalidVersionConfigError < ConfigError ; end - THRUST_VERSION = '0.6' + THRUST_VERSION = '0.7' def self.load_configuration(relative_project_root, config_file, out = STDERR) begin diff --git a/spec/lib/thrust/config_loader_spec.rb b/spec/lib/thrust/config_loader_spec.rb index 6b5b1d2..ad84e1d 100644 --- a/spec/lib/thrust/config_loader_spec.rb +++ b/spec/lib/thrust/config_loader_spec.rb @@ -8,7 +8,7 @@ context 'when the thrust configuration is valid' do before do File.open 'config.yml', 'w+' do |f| - f.write(YAML.dump({'thrust_version' => 0.6})) + f.write(YAML.dump({'thrust_version' => 0.7})) end end @@ -16,7 +16,7 @@ app_config = subject expect(app_config).to be_instance_of(Thrust::AppConfig) - expect(app_config.thrust_version).to eq('0.6') + expect(app_config.thrust_version).to eq('0.7') expect(app_config.project_root).to eq('/relative_project_root') expect(app_config.build_directory).to eq('/relative_project_root/build') end diff --git a/thrust.gemspec b/thrust.gemspec index 65661a0..3d4f480 100644 --- a/thrust.gemspec +++ b/thrust.gemspec @@ -2,7 +2,7 @@ require 'rake' Gem::Specification.new do |s| s.name = 'thrust' - s.version = '0.6.0' + s.version = '0.7.0' s.summary = 'Thrust is a collection of rake tasks for iOS development and deployment' s.description = 'Thrust provides a collection of rake tasks for iOS projects. These include tasks for running Cedar test suites and for building iOS app archives for deployment.' s.authors = [ @@ -38,7 +38,7 @@ Gem::Specification.new do |s| s.add_runtime_dependency 'colorize', '~> 0.6' s.add_runtime_dependency 'auto_tagger', '~> 0.2' s.add_runtime_dependency 'rake', '~> 10.1' - s.add_runtime_dependency 'nori', '~> 2.4.0' + s.add_runtime_dependency 'nori', '~> 2.4' s.add_development_dependency 'fakefs', '~> 0.5' s.add_development_dependency 'rspec', '3.1.0' s.add_development_dependency 'timecop', '~> 0.7'