diff --git a/CHANGELOG.md b/CHANGELOG.md index 33ab32e..7e6c495 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # OpenStudio(R) Extension Gem +## Version 0.8.1 + +* [#190]( https://github.com/NREL/openstudio-extension-gem/pull/190), Don't raise error when bundle path mismatch occurs + ## Version 0.8.0 * [#184]( https://github.com/NREL/openstudio-extension-gem/pull/184 ), Removing model methods and model method spec tests. Most model methods moved to openstudio-standards-gem, others moved to OpenStudio C++. diff --git a/lib/openstudio/extension/runner.rb b/lib/openstudio/extension/runner.rb index b616d2a..f12b180 100755 --- a/lib/openstudio/extension/runner.rb +++ b/lib/openstudio/extension/runner.rb @@ -105,7 +105,7 @@ def initialize(dirname = Dir.pwd, bundle_without = [], options = {}) needs_config = false if conf_bpath != @bundle_install_path - raise "Detected mistmatch between bundle's configured path #{conf_bpath} and runner configuration #{@bundle_install_path}" + puts "Detected mismatch between bundle's configured path #{conf_bpath} and runner configuration #{@bundle_install_path}" needs_config = true end diff --git a/lib/openstudio/extension/version.rb b/lib/openstudio/extension/version.rb index fabb8c5..b4db325 100644 --- a/lib/openstudio/extension/version.rb +++ b/lib/openstudio/extension/version.rb @@ -5,6 +5,6 @@ module OpenStudio module Extension - VERSION = '0.8.0'.freeze + VERSION = '0.8.1'.freeze end end