diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d40f15..e44e5b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## _Unreleased_ +## 1.0.0 ### Added - `auto-pr test`: diff --git a/RELEASE.md b/RELEASE.md new file mode 100644 index 0000000..263b882 --- /dev/null +++ b/RELEASE.md @@ -0,0 +1,10 @@ +# Release process + +1. In `CHANGELOG.md` replace `_Unreleased_` with the release version. +1. In `init.py` update `__version__`. +1. Create a release via the GitHub UI. + - Set the tag to match the version + - Set the title to match the version + - Copy the contents of the release changelog to the description field + +Publishing the package is handled automatically. diff --git a/autopr/__init__.py b/autopr/__init__.py index 147955e..fd8eb22 100644 --- a/autopr/__init__.py +++ b/autopr/__init__.py @@ -7,7 +7,7 @@ from autopr import workdir, config, github, repo, database -__version__ = "0.2.0" +__version__ = "1.0.0" from autopr.util import CliException, set_debug, error, is_debug