urbanopt-reopt 0.5.6 → 0.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0043f49ee7667b3fb0256db602fcb726d26187faf684363bc21f243eab3e4f58
4
- data.tar.gz: f37e369a43443c3db69eea5a5318159a73cc9ad9dee276643f3ba251a48e6fe1
3
+ metadata.gz: 7e2f52abc3c11fa018c717d44b3b1d78c591b88a6f0fe0490165330b56b06382
4
+ data.tar.gz: 781bda02244f384013108284233db56037a9e37609b084ba74d911de768a3985
5
5
  SHA512:
6
- metadata.gz: a0838750509d19c2d76ad23279ac2c64afac7913530d673565b988454dbb3139a90c90a0293b42699d3f8f8cd6c087bb2245d29ff8a4468478098c55207ea286
7
- data.tar.gz: 653d716e33315fcc9cba61de96b977410b5ea896f532de3b5b39821460ac991e3770b7f83accc043e1822bc3d1923a33a9e541fa49de53c55375681060896430
6
+ metadata.gz: 4b0664ffc42f19b75dab58f91ea92b90701d5c0912c17925b5407fd7a7b56f0bc46da92b6e5f3313958c0dc8a4c18fb64b7824fb93320ae2ec538d231fa3a97c
7
+ data.tar.gz: 11ae64c9820218d8e026cdf502652a02e495f756b1557d3dda4beb044cb1b1089b0ff2184e48f7023a9c4f7fed60a69164fb39a8caf35d9d21105970bed2d094
data/.rubocop.yml CHANGED
@@ -3,7 +3,7 @@ AllCops:
3
3
  - gems/**/*
4
4
  - measures/**/*
5
5
  - spec/files/**/measures/**/*
6
-
6
+ require: rubocop-performance
7
7
 
8
8
  inherit_from:
9
- - http://s3.amazonaws.com/openstudio-resources/styles/rubocop_v3.yml
9
+ - http://s3.amazonaws.com/openstudio-resources/styles/rubocop_v4.yml
data/CHANGELOG.md CHANGED
@@ -1,15 +1,43 @@
1
1
  # URBANopt REopt Gem
2
2
 
3
+ ## Version 0.6.2
4
+
5
+ Date Range: 06/30/21 - 10/15/21:
6
+
7
+ * Fixed [#90]( https://github.com/urbanopt/urbanopt-reopt-gem/issues/90 ), Add location of PV to Scenario and Feature optimization reopt reports
8
+ * Fixed [#90]( https://github.com/urbanopt/urbanopt-reopt-gem/issues/91 ), Add constrain for area of ground-mount and community solar
9
+
10
+
11
+ # Version 0.6.1
12
+
13
+ Date Range: 04/30/21 - 06/30/21:
14
+ * Fixed [#83]( https://github.com/urbanopt/urbanopt-reopt-gem/issues/83 ), reopt rate-limit error is hard to decipher
15
+ * Fixed [#84]( https://github.com/urbanopt/urbanopt-reopt-gem/pull/84 ), Api error codes
16
+ * Fixed [#86]( https://github.com/urbanopt/urbanopt-reopt-gem/pull/86 ), update rubocop configs to v4
17
+
18
+ ## Version 0.6.0
19
+ Date Range: 4/16/21 - 4/29/21
20
+
21
+ * Update dependencies for OpenStudio 3.2.0 / Ruby 2.7
22
+
23
+ ## Version 0.5.7
24
+
25
+ Date range: 4/7/21 - 4/15/21
26
+ * Fixes a bug that prevents **Feature Reports** from being saved
27
+
28
+
3
29
  ## Version 0.5.6
4
30
 
5
31
  Date range: 3/12/21 - 4/7/21
6
32
  * Fixes a bug that shifts REopt Lite timeseries data by 24 hours in **Feature Report** CSV's
7
33
 
34
+
8
35
  ## Version 0.5.5
9
36
 
10
37
  Date range: 2/8/21 - 3/12/21
11
38
  * Fixes a bug that shifts REopt Lite timeseries data by 24 hours in **Feature** and **Scenario Report** CSV's
12
39
 
40
+
13
41
  ## Version 0.5.4
14
42
 
15
43
  Date range: 2/8/21 - 2/25/21
data/Gemfile CHANGED
@@ -53,4 +53,4 @@ allow_local = ENV['FAVOR_LOCAL_GEMS']
53
53
  # gem 'urbanopt-geojson', github: 'URBANopt/urbanopt-geojson-gem', branch: 'develop'
54
54
  # end
55
55
 
56
- # gem 'urbanopt-reporting', github: 'URBANopt/urbanopt-reporting-gem', branch: 'develop'
56
+ # gem 'urbanopt-reporting', github: 'URBANopt/urbanopt-reporting-gem', branch: 'develop'
data/Rakefile CHANGED
@@ -61,10 +61,10 @@ task :cli_openssl_test do
61
61
 
62
62
  puts 'SYSTEM CALL:'
63
63
  puts the_call
64
- STDOUT.flush
64
+ $stdout.flush
65
65
  result = runner.run_command(the_call)
66
66
  puts "DONE, result = #{result}"
67
- STDOUT.flush
67
+ $stdout.flush
68
68
  end
69
69
 
70
70
  task default: :spec