From 1462c4553481ad95806009e4a6d79ca8157b20a1 Mon Sep 17 00:00:00 2001 From: Hans Dembinski Date: Fri, 1 Jul 2022 18:27:47 +0200 Subject: [PATCH] autorelease on push to master --- .github/workflows/wheels.yml | 3 +++ doc/README.md | 8 +++----- doc/changelog.rst | 7 +++++++ 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index d3aa90116..2f81c86ab 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -1,6 +1,9 @@ name: Wheels on: + push: + branches: + - master workflow_dispatch: jobs: diff --git a/doc/README.md b/doc/README.md index 1df26b90f..eec761ee8 100644 --- a/doc/README.md +++ b/doc/README.md @@ -11,11 +11,9 @@ How to make a release - Update `doc/changelog.rst` to released version and add today's date - Note: A prerelease can be published simply by adding `.rcN` to `version`, where N is a number >= 0 -- Merge develop into master - - Option: do a `git rebase -i` to make history edits -- Manually trigger wheels job to build wheels and upload to PyPI - - If there are problems with the wheels, commit fixes to a branch, squash-merge - branch to develop and develop to master +- Merge develop into master, this triggers job to build wheels and upload to PyPI + - If there are problems with the wheels, commit fixes to a branch, + squash-merge to develop and then again develop to master - Note: Upload uses API tokens configured in PyPI and Github "Secrets" - Create release on Github - tag: vX.Y.Z (matching `src/iminuit/version.py`) diff --git a/doc/changelog.rst b/doc/changelog.rst index b8e8bdc1c..acb3e7f72 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -5,6 +5,13 @@ Changelog ========= +2.12.1 (July 1, 2022) +--------------------- + +Fixes +~~~~~ +- ``cost.BarlowBeestonLite``: method "hpd" has been modified to fix performance in cases where bins are not dominated by a single template + 2.12.0 (June 21, 2022) ----------------------