From a6e0a6e5cfd87bf9e490dc0cda01be5ff9e4e9dc Mon Sep 17 00:00:00 2001 From: rod-glover Date: Fri, 11 Sep 2020 11:24:58 -0700 Subject: [PATCH] Bump to version 1.0.0 --- NEWS.md | 16 ++++++++++++++++ README.md | 16 ++++++++++++++++ package.json | 2 +- 3 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 NEWS.md diff --git a/NEWS.md b/NEWS.md new file mode 100644 index 0000000..7cbc476 --- /dev/null +++ b/NEWS.md @@ -0,0 +1,16 @@ +# News / Release Notes + +## 1.0.0 +*2020-Sep-10* + +This release primarily fixes problems with date selection. +Also includes DevOps improvements. + +- [Set default date to latest with data](https://github.com/pacificclimate/weather-anomaly-tool/pull/55) +- [Enable deployment to an arbitrary URI ](https://github.com/pacificclimate/weather-anomaly-tool/pull/59) +- [Add GitHub actions for CI and Docker](https://github.com/pacificclimate/weather-anomaly-tool/pull/57) + +## 0.1.0 +*2017 - 2018* + +Initial release(s). \ No newline at end of file diff --git a/README.md b/README.md index ae77e4a..d737433 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,22 @@ docker run --restart=unless-stopped -d \ weather-anomaly-tool: ``` +## Releasing + +To create a release version: + +1. Increment `version` in `package.json` +2. Summarize the changes from the last version in `NEWS.md` +3. Commit these changes, then tag the release: + + ```bash +git add package.json NEWS.md +git commit -m"Bump to version x.x.x" +git tag -a -m"x.x.x" x.x.x +git push --follow-tags + ``` + + ## [Project initialization](docs/Project-initialization.md) ## Problems enountered diff --git a/package.json b/package.json index 583bea6..c8931e1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "weather-anomaly-tool", - "version": "0.1.0", + "version": "1.0.0", "description": "Weather Anomaly Viewer frontend application", "private": true, "license": "GPL-3.0",