Skip to content

Commit dbd339f

Browse files
anchapinkfleminAssistant Bot
authored
Bump version to 0.9.5 and prepare release (#217) (#219)
* Bump version to 0.9.5 and prepare release - Update version to 0.9.5 - Update CHANGELOG.md and README.md - Add rubocop-performance to gemspec * prep version 0.9.4 * fix: update rubygems source to HTTPS and add gemspec file listing fallback. --------- Co-authored-by: Katherine Fleming <2205659+kflemin@users.noreply.github.com> Co-authored-by: Assistant Bot <assistant@example.com>
1 parent 5ac095f commit dbd339f

5 files changed

Lines changed: 21 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# OpenStudio(R) Extension Gem
22

3+
## Version 0.9.5
4+
* Updated to OpenStudio 3.11 and relaxed dependencies
5+
36
## Version 0.9.4
7+
* Updated to OpenStudio 3.11
48
* Updated runner to run bundle install instead of bundle update
59

610
## Version 0.9.3
@@ -194,4 +198,4 @@ Closed Issues: 1
194198

195199
## Version 0.1.1
196200

197-
* Initial release
201+
* Initial release

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
source 'http://rubygems.org'
1+
source 'https://rubygems.org'
22

33
# line below used for testing when need to test against branch instead of release of standards. Should be commented out prior to merge to develop
44
# gem 'openstudio-standards', github: 'NREL/openstudio-standards', branch: 'fix/901_2016_2019_properties' # for os_lib unit tests

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ export RUBYLIB=/Applications/OpenStudio-3.1.0/Ruby
8585

8686
|OpenStudio Extension Gem|OpenStudio|Ruby|
8787
|:--------------:|:----------:|:--------:|
88+
| 0.9.5 | 3.11 | 3.2.2 |
89+
| 0.9.4 | 3.11 | 3.2.2 |
8890
| 0.9.3 | 3.10 | 3.2.2 |
8991
| 0.9.2 | 3.10 | 3.2.2 |
9092
| 0.8.0 | 3.8 | 3.2 |

lib/openstudio/extension/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
module OpenStudio
77
module Extension
8-
VERSION = '0.9.4'.freeze
8+
VERSION = '0.9.5'.freeze
99
end
10-
end
10+
end

openstudio-extension.gemspec

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,13 @@ Gem::Specification.new do |spec|
2020
'source_code_uri' => "https://github.com/NREL/openstudio-extension-gem/tree/v#{spec.version}"
2121
}
2222

23-
spec.files = `git ls-files -z`.split("\x0").reject do |f|
23+
files = `git ls-files -z`.split("\x0")
24+
if files.empty?
25+
files = Dir.glob('**/*', File::FNM_DOTMATCH).select do |f|
26+
File.file?(f) && !f.match(%r{^(\.git|\.bundle|pkg|coverage|doc|_yardoc|\.yardoc)/}) && !f.match(%r{^Gemfile\.lock$})
27+
end
28+
end
29+
spec.files = files.reject do |f|
2430
f.match(%r{^(test|lib.measures.*tests|spec|features)/})
2531
end
2632
spec.bindir = 'exe'
@@ -36,10 +42,11 @@ Gem::Specification.new do |spec|
3642
spec.add_dependency 'openstudio_measure_tester', '~> 0.5.0'
3743
spec.add_dependency 'openstudio-workflow', '~> 2.5.0'
3844
# parallel, regexp_parser, and addressable versions are pinned to avoid test_with_openstudio errors
39-
spec.add_dependency 'addressable', '2.8.1'
45+
spec.add_dependency 'addressable', '>= 2.8.1'
4046
spec.add_dependency 'parallel', '~> 1.19.1'
41-
spec.add_dependency 'regexp_parser', '2.9.0'
47+
spec.add_dependency 'regexp_parser', '>= 2.9.0'
4248
spec.add_development_dependency 'rake', '~> 13.0'
4349
spec.add_development_dependency 'rspec', '~> 3.9'
44-
spec.add_development_dependency 'rubocop', '1.50'
50+
spec.add_development_dependency 'rubocop', '>= 1.50.0'
51+
spec.add_development_dependency 'rubocop-performance'
4552
end

0 commit comments

Comments
 (0)