Skip to content

Commit

Permalink
Merge pull request #3 from NREL/develop
Browse files Browse the repository at this point in the history
Version 1.0.0 = first public release 🚀
  • Loading branch information
stephen-frank committed Aug 19, 2023
2 parents a824294 + a951b17 commit 84afce7
Show file tree
Hide file tree
Showing 6 changed files with 176 additions and 138 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,26 @@ This file tracks notable changes to **nreCsvExt**. The format is based on

[View Changes](https://github.com/NREL/nrelCsvExt/compare/main...develop)

## [v1.0.0] (2023-08-18)

[v1.0.0]: https://github.com/NREL/nrelCsvExt/releases/tag/v1.0.0

[View Changes](https://github.com/NREL/nrelCsvExt/compare/v0.9.6...v1.0.0)

### Changed

- Replaced `noWarn` option with `warn` option in all relevant functions to avoid
the double negative: `warn = true` vs. `noWarn = false`
- The `span` option in `csvImportHistory()` is now start inclusive and end
exclusive for consistency with the rest of SkySpark
- Updated `csvImportHistory()` warning and error messages to include point ID
along with display name

### Fixed

- `csvImportHistory()` no longer crashes and also provides useful warnings
when a value column is present in the source file but contains no data

## [v0.9.6 Beta] (2023-04-11)

[v0.9.6 Beta]: https://github.com/NREL/nrelCsvExt/releases/tag/v0.9.6
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ within the *Docs* interface in the *Code* app.
Contributing
------------

To contribute to `nrelUtilityExt`, please feel free to open an issue or a submit
a pull request. If you want to modify the code, you can use `importFunctions()`
To contribute to `nrelCsvExt`, please feel free to open an issue or a submit a
pull request. If you want to modify the code, you can use `importFunctions()`
and `exportFunctions()` from [nrelUtilityExt] to make your life easier.
Suggested workflow:

Expand Down
9 changes: 4 additions & 5 deletions build.fan
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ class Build : BuildPod
{
podName = "nrelCsvExt"
summary = "Import and export functions for CSV data"
version = Version("0.9.6")
version = Version("1.0.0")
meta = [
"ext.name": "nrelCsv",
"ext.depends": "io,nrelUtility",
"ext.icon": "table",
"org.name": "NREL",
"org.uri": "https://www.nrel.gov/",
"proj.name": "NREL CSV Extension",
"proj.uri": "https://github.nrel.gov/IntelligentCampus/nrelCsvExt",
"proj.uri": "https://github.com/NREL/nrelCsvExt",
"license.name": "BSD-3",
"skyspark.docExt": "true",
]
Expand All @@ -35,7 +35,6 @@ class Build : BuildPod
// To publish to StackHub, use: bin/fan /path/to/build.fan publish
// For more information, see: https://skyfoundry.com/doc/stackhub/index#publishing

//Future Use...
//@Target { help = "Publish to stackhub.org " }
//Void publish() { stackhub::PublishTask(this).run }
@Target { help = "Publish to stackhub.org " }
Void publish() { stackhub::PublishTask(this).run }
}

0 comments on commit 84afce7

Please sign in to comment.