https://github.com/GPflow/GPflow
Revision 1aa6a5627b2bbb8cd9618ef589a9aa852c87a73b authored by sc336 on 09 January 2023, 09:44:16 UTC, committed by Simon Chiu on 11 January 2023, 17:08:46 UTC
* Rotated deploy key due to CircleCI security incident 2023-01-04

* Used the correct key this time

* Touched to force rerunning tests

Used the correct key this time

Touched to force rerunning tests

Updated config with new key
1 parent 95f4f37
Raw File
Tip revision: 1aa6a5627b2bbb8cd9618ef589a9aa852c87a73b authored by sc336 on 09 January 2023, 09:44:16 UTC
Rotated deploy key due to CircleCI security incident 2023-01-04 (#2032)
Tip revision: 1aa6a56
HOWTO_RELEASE.md
# How to make a new GPflow release

1. Check that [RELEASE.md](RELEASE.md) contains the up-to-date release notes for the next release.
   - They should cover all (non-GitHub-related) commits (PRs) on the `develop` branch since the most
     recent release.
   - They should make clear to users whether they might benefit from this release and what backwards
     incompatibilities they might face.

2. Bump the version numbers in the `develop` branch, in the
   [`VERSION`](https://github.com/GPflow/GPflow/blob/develop/VERSION) file **and** in
   [`doc/sphinx/conf.py`](https://github.com/GPflow/GPflow/blob/develop/doc/sphinx/conf.py)
   ([example PR: #1666](https://github.com/GPflow/GPflow/pull/1666)).
   Copy the RELEASE.md template for the following release-in-progress.

3. Create a release PR from `develop` to `master`.
   - **Make a merge commit. DO NOT SQUASH-MERGE.**
   - If you squash-merge, `master` will be *ahead* of develop (by the squash-merge commit). This
     means we’ll end up with merge conflicts at the following release!
   - [example PR: #1396](https://github.com/GPflow/GPflow/pull/1396)

4. Go to the [release page on GitHub](https://github.com/GPflow/GPflow/releases/new) and create a
   release for a tag “v{VERSION}” (e.g., for version 2.1.3 the tag needs to be `v2.1.3`) to `master`
   branch. Copy the release notes into the description field!
   - [example release: v2.0.0](https://github.com/GPflow/GPflow/releases/tag/v2.0.0)

5. You are almost done now! Go to https://circleci.com and monitor that tests for your newly-created
   tag passed and the job for pushing the pip package succeeded. CircleCI matches on the
   “v{VERSION}” tag to kick-start the release process.
   - [example CI workflow: 2434](https://app.circleci.com/pipelines/github/GPflow/GPflow/2434/workflows/f1274aa7-18c6-45a3-8d59-cab573305b64)

6. Take a break; wait until the new release
   [shows up on PyPi](https://pypi.org/project/gpflow/#history).


Done done! Go and celebrate our hard work :)
back to top