diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 951951bc486..45e5b3665a5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -19,7 +19,7 @@ with advance notice in the **Deprecations** section of releases. .. towncrier release notes start -pytest 4.99.10 (2019-07-04) +pytest 4.99.11 (2019-07-04) =========================== Bug Fixes diff --git a/scripts/publish_gh_release_notes.py b/scripts/publish_gh_release_notes.py index f6c956fadef..4349a454055 100644 --- a/scripts/publish_gh_release_notes.py +++ b/scripts/publish_gh_release_notes.py @@ -27,7 +27,7 @@ def publish_github_release(token, tag_name, body): github = github3.login(token=token) - repo = github.repository("pytest-dev", "pytest") + repo = github.repository("nicoddemus", "pytest") return repo.create_release(tag_name=tag_name, body=body)