urbanopt-cli 1.0.0 → 1.0.1

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: 9fdd79eec14e9839876f273e268401c395cf1d51d53cfc1e4517ad8e1dda9442
4
- data.tar.gz: 8d321450bf4a3da3c7b5dbe351a9bf3c60a947fc99bd41995814a5f706fb2cef
3
+ metadata.gz: bfceca7798cf44a5750ef074227accbb934efb248d038880087d08e018ad6271
4
+ data.tar.gz: 17caf82796173fdf6b22d785f56008bc678ffd3d89d6c2c22f2713086f23d45c
5
5
  SHA512:
6
- metadata.gz: ede640bc12884509dc5eed82e5cf6b0899a464c4e5b2bde9c1e3ba507803d8558a2cf54b33596d8867fc8da7f230e538a99ae07c71295b2ffb47da8b849c984e
7
- data.tar.gz: 003022dce470f7b2f738b89aca37e8950b495fc6bfdd08a0aaa4342868f6c570494c742eeb143cd60f3e9dd324d4b3b6d3015217e7995070d8761c9257ecf8e2
6
+ metadata.gz: 158e5b73a437c4388acde9eeb65ccd57c229eab6295c094c019684394c11c1ded75f061f0b3bf15f4e3950ab4967dfc62ae999654a8fff04238a81bb5558bb58
7
+ data.tar.gz: 9f05370517a7188b69766d5c03836c4902f459d21c70e9a19bce437b81f7d63626b758fe1b27752e07a23d63e4834ca327e39306ecc4e3196eef5bcf24be64f3
@@ -9,11 +9,11 @@ assignees: ''
9
9
 
10
10
  ### Expected behavior
11
11
 
12
- _A clear and concise description of what you expected to happen._
12
+ <!--A clear and concise description of what you expected to happen.-->
13
13
 
14
14
  ### Actual behavior
15
15
 
16
- _A clear and concise description of what actually happens._
16
+ <!--A clear and concise description of what actually happens.-->
17
17
 
18
18
  ### To Reproduce
19
19
 
@@ -23,6 +23,12 @@ Steps to reproduce the behavior:
23
23
  1. Enter '...'
24
24
  1. Enter '...'
25
25
 
26
+ ### Version
27
+ <!--Please fill in your version of URBANopt to help us diagnose the issue.-->
28
+ <!--If you are not on the [newest version](https://docs.urbanopt.net/developer_resources/compatibility_matrix.html), please update.-->
29
+ <!--Review the [release notes](https://docs.urbanopt.net/developer_resources/known_issues.html) for help with known issues.-->
30
+ URBANopt: `X.Y.Z`
31
+
26
32
  ### Additional context
27
33
 
28
- _E.g.: Windows, Mac, Linux? Are you behind a firewall? Do you have additional security constraints?_
34
+ <!--Are you behind a firewall? Do you have additional security constraints?-->
@@ -7,14 +7,14 @@ assignees: ''
7
7
 
8
8
  ---
9
9
 
10
- **Is your feature request related to a problem? Please describe.**
11
- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
10
+ ### Is your feature request related to a problem? Please describe
11
+ <!--A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]-->
12
12
 
13
- **Describe the solution you'd like**
14
- A clear and concise description of what you want to happen.
13
+ ### The solution you'd like
14
+ <!--A clear and concise description of what you want to happen.-->
15
15
 
16
- **Describe alternatives you've considered**
17
- A clear and concise description of any alternative solutions or features you've considered.
16
+ ### Alternatives you've considered
17
+ <!--A clear and concise description of any alternative solutions or features you've considered.-->
18
18
 
19
- **Additional context**
20
- Add any other context or screenshots about the feature request here.
19
+ ### Additional context
20
+ <!--Add any other context or screenshots about the feature request here.-->
@@ -8,5 +8,5 @@
8
8
 
9
9
  - [ ] Unit tests have been added or updated
10
10
  - [ ] All ci tests pass (green)
11
- - [ ] An [issue](https://github.com/urbanopt/urbanopt-cli/issues) has been created (which will be used for the changelog)
11
+ - [ ] This PR has been labeled appropriately (which will be used for the changelog)
12
12
  - [ ] This branch is up-to-date with develop
@@ -13,7 +13,7 @@ env:
13
13
  # Favor_Local_Gems enforces develop branch of all Ruby dependencies
14
14
  # This is our canary in the coal mine! If any simulation tests fail, comment this and retry.
15
15
  # If CI is then successful, we have a breaking change in a dependency somewhere.
16
- # FAVOR_LOCAL_GEMS: true
16
+ FAVOR_LOCAL_GEMS: true
17
17
  GEM_DEVELOPER_KEY: ${{ secrets.GEM_DEVELOPER_KEY }}
18
18
  UO_NUM_PARALLEL: 4
19
19
  # GHA machines have 4 cores. Trying to run more concurrently will slow everything down.
@@ -56,11 +56,10 @@ jobs:
56
56
  run: bundle exec rspec -e 'Run and work with a small ${{ matrix.simulation-type }} simulation'
57
57
  - name: Upload artifacts
58
58
  # Save results for examination - useful for debugging
59
- uses: actions/upload-artifact@v3
60
- # Using v4 would mean we have to change our path design, and/or the test dir names
59
+ uses: actions/upload-artifact@v4
61
60
  # Only upload if a previous step fails
62
61
  if: failure()
63
62
  with:
64
- name: rspec_results
63
+ name: rspec_results_${{ matrix.simulation-type }}
65
64
  path: artifact.zip
66
65
  retention-days: 7 # save for 1 week then delete
data/CHANGELOG.md CHANGED
@@ -1,19 +1,36 @@
1
1
  # Changelog
2
2
 
3
+ ## Version 1.0.1
4
+
5
+ ## What's Changed
6
+
7
+ * Update reopt assumptions file to work with REopt-api v3.11 by @vtnate in https://github.com/urbanopt/urbanopt-cli/pull/504
8
+
9
+ **Full Changelog**: https://github.com/urbanopt/urbanopt-cli/compare/v1.0.0...v1.0.1
10
+
11
+ ## Version 1.0.0
12
+
13
+ * Update to support ruby 3.2.2 and OpenStudio 3.9.0
14
+
15
+ **Full Changelog**: https://github.com/urbanopt/urbanopt-cli/compare/v0.14.0...v1.0.0
16
+
3
17
  ## Version 0.14.0
4
18
  Date Range: 06/27/2024 - 11/15/2024
5
19
 
6
20
  ## What's Changed
21
+
7
22
  ### Exciting New Features 🎉
23
+
8
24
  * Upgrade version of ThermalNetwork Python dependency by @vtnate in https://github.com/urbanopt/urbanopt-cli/pull/493
9
25
  * Upgrade miniconda by @vtnate in https://github.com/urbanopt/urbanopt-cli/pull/492
10
26
  * Use new version of GMT by @vtnate in https://github.com/urbanopt/urbanopt-cli/pull/489
27
+
11
28
  ### Other Changes
29
+
12
30
  * Update installer patch by @tijcolem in https://github.com/urbanopt/urbanopt-cli/pull/476
13
31
  * Fix installer path bug by @vtnate in https://github.com/urbanopt/urbanopt-cli/pull/485
14
32
  * Remove unnecessary default user-entry for DES commands by @vtnate in https://github.com/urbanopt/urbanopt-cli/pull/486
15
33
 
16
-
17
34
  **Full Changelog**: https://github.com/urbanopt/urbanopt-cli/compare/v0.13.0...v0.14.0
18
35
 
19
36
  ## Version 0.13.0
data/Gemfile CHANGED
@@ -24,7 +24,7 @@ allow_local = ENV['FAVOR_LOCAL_GEMS']
24
24
  # gem 'urbanopt-core', github: 'URBANopt/urbanopt-core-gem', branch: 'master'
25
25
 
26
26
  if allow_local && File.exist?('../urbanopt-scenario-gem')
27
- gem 'urbanopt-scenario', path: '../urbanopt-scenario-gem'
27
+ gem 'urbanopt-scenario', path: '../urbanopt-scenario-gem'
28
28
  elsif allow_local
29
29
  gem 'urbanopt-scenario', github: 'URBANopt/urbanopt-scenario-gem', branch: 'develop'
30
30
  end
@@ -36,7 +36,7 @@ elsif allow_local
36
36
  end
37
37
 
38
38
  if allow_local && File.exist?('../urbanopt-reopt-gem')
39
- gem 'urbanopt-reopt', path: '../urbanopt-reopt-gem'
39
+ gem 'urbanopt-reopt', path: '../urbanopt-reopt-gem'
40
40
  elsif allow_local
41
41
  gem 'urbanopt-reopt', github: 'URBANopt/urbanopt-reopt-gem', branch: 'develop'
42
42
  end
data/LICENSE.md CHANGED
@@ -1,4 +1,4 @@
1
- URBANopt (tm), Copyright (c) 2019-2024, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved.
1
+ URBANopt (tm), Copyright (c) 2019-2025, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved.
2
2
 
3
3
  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
4
4
 
@@ -27,6 +27,7 @@
27
27
  "net_metering_limit_kw": 0.0
28
28
  },
29
29
  "ElectricLoad": {
30
+ "year": 2017,
30
31
  "critical_loads_kw_is_net": false,
31
32
  "critical_load_fraction": 0,
32
33
  "loads_kw_is_net": true
@@ -27,7 +27,7 @@
27
27
  "net_metering_limit_kw": 0.0
28
28
  },
29
29
  "ElectricLoad": {
30
- "year": 2018,
30
+ "year": 2017,
31
31
  "critical_loads_kw_is_net": false,
32
32
  "critical_load_fraction": 0,
33
33
  "loads_kw_is_net": true
@@ -5,6 +5,6 @@
5
5
 
6
6
  module URBANopt
7
7
  module CLI
8
- VERSION = '1.0.0'.freeze
8
+ VERSION = '1.0.1'.freeze
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: urbanopt-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - NREL URBANopt team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-29 00:00:00.000000000 Z
11
+ date: 2025-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: optimist