-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jeff Hernandez
authored
Jun 20, 2019
1 parent
b1b6181
commit 8aff18c
Showing
4 changed files
with
41 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
Changelog | ||
========= | ||
|
||
**v0.1.2** June 19, 2019 | ||
* Enhancements | ||
* Add dynamic progress bar | ||
* Add label transform for binning labels | ||
* Improve code coverage | ||
* Update documentation | ||
|
||
**v0.1.1** May 31, 2019 | ||
* Initial Release |
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,32 @@ | ||
# Release Process | ||
## Create composeml release on github | ||
#### Create release branch | ||
1. Branch off of master and name the branch the release version number (e.g. v0.1.2) | ||
2. Bump verison number in `setup.py`, and `composeml/__init__.py`. | ||
|
||
#### Create Release PR | ||
A release PR should have the version number as the title and the changelog updates as the PR body text. The contributors line is not necessary. | ||
|
||
#### Create Github Release | ||
After the release pull request has been merged into the master branch, it is time draft the github release. | ||
* The target should be the master branch | ||
* The tag should be the version number with a v prefix (e.g. v0.1.2) | ||
* Release title is the same as the tag | ||
* Release description should be the full changelog updates for the release, including the line thanking contributors. | ||
|
||
## Release on PyPI | ||
1. Update circleci's python3 image | ||
```bash | ||
docker pull circleci/python:3 | ||
``` | ||
2. Run upload script | ||
* Replace `/absolute/path/to/upload.sh` with the actual path | ||
* Replace the "release_tag" part of `tags/release_tag` with the actual tag | ||
```bash | ||
docker run \ | ||
--rm \ | ||
-it \ | ||
-v /absolute/path/to/upload.sh:/home/circleci/upload.sh \ | ||
circleci/python:3 \ | ||
/bin/bash -c "bash /home/circleci/upload.sh tags/release_tag" | ||
``` |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
setup( | ||
name='composeml', | ||
version='0.1.1', | ||
version='0.1.2', | ||
author='Feature Labs, Inc.', | ||
author_email='[email protected]', | ||
license='BSD 3-clause', | ||
|