-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into release-1.1.2
- Loading branch information
Showing
18 changed files
with
236 additions
and
149 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
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,31 @@ | ||
# Instructions to release a new version of Gens | ||
|
||
1. Create a release branch with the release name, e.g. `release-1.1.1` and checkout the branch | ||
|
||
```bash | ||
git checkout -b release-1.1.1 | ||
``` | ||
|
||
2. Update version to, e.g. 1.1.1 | ||
|
||
- in `gens/__version__.py` | ||
- in `package.json` | ||
|
||
3. Make sure `CHANGELOG.md`is up to date for the release | ||
|
||
|
||
4. Commit changes, push to github and create a pull request | ||
|
||
```bash | ||
git add gens/__version__.py | ||
git add package.json CHANGELOG.md | ||
git commit -m "Release notes version 1.1.1" | ||
git push -u origin release-1.1.1 | ||
``` | ||
|
||
5. On github click **create pull request**. | ||
|
||
6. After getting the pull request approved by a reviewer merge it to master. | ||
|
||
7. Draft a new release on GitHub, add some text - e.g. and abbreviated CHANGELOG - and release. | ||
This adds a version tag, builds docker image. |
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
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 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,2 +1,2 @@ | ||
from .app import create_app | ||
from .__version__ import VERSION as version | ||
from .app import create_app |
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
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,2 +1,2 @@ | ||
from .gens.views import gens_bp | ||
from .about.views import about_bp | ||
from .gens.views import gens_bp |
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
Oops, something went wrong.