-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to support FY17 TNI Loss Factors, bugfix AEMO::NEM12.parse_nem…
…12 CSV parsing
- Loading branch information
Showing
11 changed files
with
594 additions
and
577 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,20 @@ | ||
# AEMO Gem Changelog | ||
|
||
## 0.1.33 | ||
|
||
* Rubocop lint bugfix (AEMO::NEM12.parse_nem12 not breaking up rows correctly) | ||
* Timecop added to deal with RSpec failures for unpublished TNI Data | ||
* FY17 Marginal Loss Factors added from http://www.aemo.com.au/Electricity/Market-Operations/Loss-Factors-and-Regional-Boundaries/Distribution-Loss-Factors-for-the-2016_17-Financial-Year | ||
|
||
## 0.1.32 | ||
|
||
Nokogiri security flaw patched (Ref: https://github.com/sparklemotion/nokogiri/issues/1374 ) | ||
* Nokogiri security flaw patched (Ref: https://github.com/sparklemotion/nokogiri/issues/1374 ) | ||
|
||
## 0.1.31 | ||
|
||
AEMO::Market#historic_trading | ||
AEMO::Market#historic_trading_by_range | ||
* AEMO::Market#historic_trading | ||
* AEMO::Market#historic_trading_by_range | ||
|
||
## 0.1.30 | ||
|
||
AEMO::NMI#current_annual_load | ||
* AEMO::NMI#current_annual_load |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
# @author Joel Courtney <[email protected]> | ||
module AEMO | ||
# aemo version | ||
VERSION = '0.1.32'.freeze | ||
VERSION = '0.1.33'.freeze | ||
|
||
# aemo version split amongst different revisions | ||
MAJOR_VERSION, MINOR_VERSION, REVISION = VERSION.split('.').map(&:to_i) | ||
|
Oops, something went wrong.