-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #90 from dhomeier/auto-release
Setup automated changelog generation for release process
- Loading branch information
Showing
8 changed files
with
150 additions
and
75 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
changelog: | ||
exclude: | ||
authors: | ||
- pre-commit-ci | ||
labels: | ||
- no-changelog-entry-needed | ||
- skip-changelog | ||
|
||
categories: | ||
- title: New Features | ||
labels: | ||
- enhancement | ||
- title: Bug Fixes | ||
labels: | ||
- bug | ||
- title: Documentation | ||
labels: | ||
- documentation | ||
- title: Other Changes | ||
labels: | ||
- "*" |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# This workflow takes the GitHub release notes and updates the changelog on the | ||
# main branch with the body of the release notes, thereby keeping a log in | ||
# the git repo of the changes. | ||
|
||
name: "Update Changelog" | ||
|
||
on: | ||
release: | ||
types: [released] | ||
|
||
jobs: | ||
update: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: main | ||
|
||
- name: Update Changelog | ||
uses: stefanzweifel/changelog-updater-action@v1 | ||
with: | ||
release-notes: ${{ github.event.release.body }} | ||
latest-version: ${{ github.event.release.name }} | ||
path-to-changelog: CHANGES.md | ||
|
||
- name: Commit updated Changelog | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
branch: main | ||
commit_message: Update CHANGELOG | ||
file_pattern: CHANGES.md |
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 |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# Full changelog | ||
|
||
## [0.5](https://github.com/glue-viz/glue-wwt/compare/v0.4...v0.5) - 2020-11-30 | ||
|
||
### What's Changed | ||
|
||
#### New Features | ||
|
||
- Included a save button to save the current view to the first slide of a tour. [https://github.com/glue-viz/glue-wwt/pull/70, https://github.com/glue-viz/glue-wwt/pull/72, https://github.com/glue-viz/glue-wwt/pull/73] | ||
|
||
- Added initial support for using glue-wwt in Jupyter. [https://github.com/glue-viz/glue-wwt/pull/64] | ||
|
||
#### Bug Fixes | ||
|
||
- Fixed compatibility with glue-core 1.0. [https://github.com/glue-viz/glue-wwt/pull/77] | ||
|
||
- Fixed a bug that caused altitude unit to not work correctly on Windows. [https://github.com/glue-viz/glue-wwt/pull/74] | ||
|
||
- Fixed a bug related to reloading sessions with WWT viewers. [https://github.com/glue-viz/glue-wwt/pull/76] | ||
|
||
## [0.4](https://github.com/glue-viz/glue-wwt/compare/v0.3...v0.4) - 2019-06-23 | ||
|
||
### What's Changed | ||
|
||
#### Bug Fixes | ||
|
||
- Fixed bug with layer centering when NaN values are present. [https://github.com/glue-viz/glue-wwt/pull/55] | ||
|
||
- Fixed issues with layer visibility. [https://github.com/glue-viz/glue-wwt/pull/52] | ||
|
||
- Fixed bug that caused remonving layers to not work. [https://github.com/glue-viz/glue-wwt/pull/56] | ||
|
||
- Fixed issue with viewer options not being set correctly when loading from a session. [https://github.com/glue-viz/glue-wwt/pull/52] | ||
|
||
- Fixed compatibility with the latest developer version of glue. [https://github.com/glue-viz/glue-wwt/pull/52] | ||
|
||
- Fixed issue with automatic installation of dependencies. [https://github.com/glue-viz/glue-wwt/pull/52] | ||
|
||
## [0.3](https://github.com/glue-viz/glue-wwt/compare/v0.2...v0.3) - 2019-02-27 | ||
|
||
### What's Changed | ||
|
||
#### New Features | ||
|
||
- Added support for showing data on the surface of celestial bodies as well as | ||
in the 3D Solar System/Milky Way/Universe view. [https://github.com/glue-viz/glue-wwt/pull/40, https://github.com/glue-viz/glue-wwt/pull/42] | ||
|
||
- Added support for color-coding and changing point size based on attributes | ||
(requires PyWWT 0.6 or later). [https://github.com/glue-viz/glue-wwt/pull/44] | ||
|
||
## [0.2](https://github.com/glue-viz/glue-wwt/compare/v0.1...v0.2) - 2018-12-29 | ||
|
||
### What's Changed | ||
|
||
#### New Features | ||
|
||
- Add a Save button to save the current view to a file. [https://github.com/glue-viz/glue-wwt/pull/38] | ||
|
||
#### Bug Fixes | ||
|
||
- Fix compatibility with latest version of glue. [https://github.com/glue-viz/glue-wwt/pull/25] | ||
|
||
- Allow world coordinates to be used for the RA/Dec. [https://github.com/glue-viz/glue-wwt/pull/21] | ||
|
||
#### Other Changes | ||
|
||
- Make use of PyWWT. [https://github.com/glue-viz/glue-wwt/pull/32, https://github.com/glue-viz/glue-wwt/pull/35] | ||
|
||
- Change default foreground and background imagery. [https://github.com/glue-viz/glue-wwt/pull/29] | ||
|
||
## [0.1](https://github.com/glue-viz/glue-wwt/releases/tag/v0.1) - 2017-08-23 | ||
|
||
- Initial release |
This file was deleted.
Oops, something went wrong.
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,3 +1,3 @@ | ||
include LICENSE | ||
include README.rst | ||
include CHANGES.rst | ||
include CHANGES.md |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
How to release a new version of Glue-WWT | ||
======================================== | ||
|
||
#. Follow the instructions in the `Glue documentation | ||
<http://docs.glueviz.org/en/stable/developer_guide/release.html>`_ | ||
to create a release using the `GitHub menu | ||
<https://github.com/glue-viz/glue-wwt/releases/new>`_. | ||
|
||
#. Have a beverage of your choosing while you can check the build progress | ||
`here <https://github.com/glue-viz/glue-wwt/actions/>`_. | ||
(The wheels may take a little while to build). |