Skip to content

Commit

Permalink
Merge pull request #191 from NREL/develop
Browse files Browse the repository at this point in the history
Version 0.8.1
  • Loading branch information
kflemin authored Jul 27, 2024
2 parents 6b46dfd + 1950c50 commit 0e338d9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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++.
Expand Down
2 changes: 1 addition & 1 deletion lib/openstudio/extension/runner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion lib/openstudio/extension/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

module OpenStudio
module Extension
VERSION = '0.8.0'.freeze
VERSION = '0.8.1'.freeze
end
end

0 comments on commit 0e338d9

Please sign in to comment.