Issues Closed
* [Issue 6](https://github.com/spyder-ide/three-merge/issues/6) - Release v0.1.0
* [Issue 4](https://github.com/spyder-ide/three-merge/issues/4) - Add RELEASE instructions ([PR 5](https://github.com/spyder-ide/three-merge/pull/5) by [andfoy](https://github.com/andfoy))
* [Issue 3](https://github.com/spyder-ide/three-merge/issues/3) - Improve README ([PR 5](https://github.com/spyder-ide/three-merge/pull/5) by [andfoy](https://github.com/andfoy))
* [Issue 1](https://github.com/spyder-ide/three-merge/issues/1) - Add tests ([PR 2](https://github.com/spyder-ide/three-merge/pull/2) by [andfoy](https://github.com/andfoy))
In this release 4 issues were closed.
Pull Requests Merged
* [PR 5](https://github.com/spyder-ide/three-merge/pull/5) - PR: Improve README and add RELEASE instructions, by [andfoy](https://github.com/andfoy) ([4](https://github.com/spyder-ide/three-merge/issues/4), [3](https://github.com/spyder-ide/three-merge/issues/3))
* [PR 2](https://github.com/spyder-ide/three-merge/pull/2) - PR: Add tests and configure CI, by [andfoy](https://github.com/andfoy) ([1](https://github.com/spyder-ide/three-merge/issues/1))
In this release 2 pull requests were closed.
To release a new version of three-merge:
1. git fetch upstream && git checkout upstream/master
2. Close milestone on GitHub
3. git clean -xfdi
4. Update CHANGELOG.md with loghub
5. git add -A && git commit -m "Update Changelog"
6. Update release version in ``__init__.py`` (set release version, remove 'dev0')
7. git add -A && git commit -m "Release vX.X.X"
8. python setup.py sdist
9. python setup.py bdist_wheel --universal
10. twine check
11. twine upload
12. git tag -a vX.X.X -m "Release vX.X.X"
13. Update development version in ``__init__.py`` (add 'dev0' and increment minor)
14. git add -A && git commit -m "Back to work"
15. git push upstream master
16. git push upstream --tags