Skip to content

Commit

Permalink
feat: add method flags to support 5 min settlement and same day churn (
Browse files Browse the repository at this point in the history
  • Loading branch information
jufemaiz authored Sep 19, 2022
1 parent 590e85b commit ae94e25
Show file tree
Hide file tree
Showing 3 changed files with 172 additions and 123 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,18 @@ permissions:
jobs:
golangci:
name: 'lint'
runs-on: 'ubuntu-latest'
strategy:
matrix:
go-version: ["1.17.x"] # linting in 1 go version is enough
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: 'actions/checkout@v2'
- name: 'golangci-lint'
uses: 'golangci/golangci-lint-action@v2'
with:
# Optional: 'version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version'
version: 'v1.44'
version: 'v1.43'

# Optional: 'working directory, useful for monorepos'
# working-directory: 'somedir'
Expand Down
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,24 @@
# go-aemo changelog

## [v0.2.0] (2022-09-20)

### Added

* New method flags:

| Type | `EST` and/or `SUB` | Descriptor |
| --- | --- | --- |
| Type 20 | `SUB` | Churn Correction (Like Day) |
| Type 21 | `SUB` | Five-minute No Historical Data |
| Type 59 | `SUB`, `EST` | Five-minute No Historical Data |
| Type 69 | `SUB` | Linear extrapolation |

## [v0.1.1] (2022-02-04)

### Fixed

* `MDMDataStreamIdentifier` field updated due to variation by AEMO in their documenation
(Ref: <https://www.aemo.com.au/-/media/files/stakeholder_consultation/consultations/nem-consultations/2019/5ms-metering-package-3/final/standing-data-for-msats-final-clean.pdf>)
(Ref: <https://www.aemo.com.au/-/media/files/stakeholder_consultation/consultations/nem-consultations/2019/5ms-metering-package-3/final/standing-data-for-msats-final-clean.pdf>)
(#4).

### Changed
Expand Down
Loading

0 comments on commit ae94e25

Please sign in to comment.