Skip to content

Commit

Permalink
Bump to version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rod-glover committed Sep 11, 2020
1 parent 28ef8df commit a6e0a6e
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
16 changes: 16 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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).
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,22 @@ docker run --restart=unless-stopped -d \
weather-anomaly-tool:<tag>
```

## 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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit a6e0a6e

Please sign in to comment.