Skip to content

Commit

Permalink
Merge pull request #862 from amperser/v0.10.0
Browse files Browse the repository at this point in the history
Release version 0.10.0
  • Loading branch information
suchow authored Jul 23, 2018
2 parents cf9cc14 + b2604e7 commit d71631e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## [0.10.0](https://github.com/amperser/proselint/tree/0.10.0) (2018-07-23)
[Full Changelog](https://github.com/amperser/proselint/compare/0.9.0...0.10.0)

- Update dependencies to latest
- Add support for reading from stdin with the CLI ([io12](https://github.com/io12))
- Use pytest, not Nose, on Travis

## [0.9.0](https://github.com/amperser/proselint/tree/0.9.0) (2018-07-20)
[Full Changelog](https://github.com/amperser/proselint/compare/0.8.0...0.9.0)

Expand Down
14 changes: 7 additions & 7 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Releasing a new version

1. Use [bumpversion](https://pypi.org/project/bumpversion/) to increase the patch, minor, or major version in accordance with what has changed since the previous release.
1. Create a new branch off master with the new version number.
2. Update CHANGELOG.md to explain the most recent changes.
3. Open a pull request against `master`.
4. Merge the pull request into `master`.
5. Tag the merge commit with the new version number.
6. Push the tag.

The tagged version will be uploaded to PyPI automatically.
3. Use [bumpversion](https://pypi.org/project/bumpversion/) to increase the patch, minor, or major version in accordance with what has changed since the previous release.
4. Open a pull request against `master`.
5. Merge the pull request into `master`.
6. Tag the merge commit with the new version number.
7. Push the tag. The tagged version will be uploaded to PyPI automatically.
8. Run Chandler (`chandler push`) to sync the changelog with GitHub releases.
2 changes: 1 addition & 1 deletion proselint/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Proselint version number."""

__version__ = "0.9.0"
__version__ = "0.10.0"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.0
current_version = 0.10.0
commit = True
tag = True
tag_name = {new_version}
Expand Down

0 comments on commit d71631e

Please sign in to comment.