-
-
Notifications
You must be signed in to change notification settings - Fork 561
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump to 0.3.2, add RELEASING.md for describing the process
- Loading branch information
Showing
3 changed files
with
56 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
1. Update the version number | ||
|
||
nano miio/version.py | ||
|
||
2. Generate changelog since the last release | ||
|
||
~/.gem/ruby/2.4.0/bin/github_changelog_generator --user rytilahti --project python-miio --since-tag 0.3.0 -o newchanges | ||
|
||
3. Copy the changelog block over to CHANGELOG.md and write a short, understandable short changelog | ||
|
||
4. Commit modified CHANGELOG.md | ||
|
||
5. Tag a release (and add short changelog as a tag commit message) | ||
|
||
tag -a 0.3.1 | ||
|
||
6. Push to git | ||
|
||
git push --tags | ||
|
||
7. Upload new version to pypi | ||
|
||
python setup.py sdist bdist_wheel upload |
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 @@ | ||
# flake8: noqa | ||
__version__ = "0.3.1" | ||
__version__ = "0.3.2" |