From 325d72fabcc00d100b451d1d15cbbe9d737c2861 Mon Sep 17 00:00:00 2001 From: Eric Holscher Date: Mon, 16 May 2022 20:52:18 -0700 Subject: [PATCH] Release 8.0.2 --- CHANGELOG.rst | 19 +++++++++++++++++++ docs/conf.py | 2 +- package.json | 2 +- readthedocs/__init__.py | 2 +- setup.cfg | 4 ++-- 5 files changed, 24 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5c766e892a8..83852dd523a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,22 @@ +Version 8.0.2 +------------- + +:Date: May 16, 2022 + +* `@stsewd `__: Fix tests on .com (`#9233 `__) +* `@agjohnson `__: Disable codecov annotations (`#9186 `__) +* `@choldgraf `__: Note sub-folders with a single domain. (`#9185 `__) +* `@stsewd `__: BuildCommand: add option to merge or not stderr with stdout (`#9184 `__) +* `@agjohnson `__: Fix bumpver issue (`#9181 `__) +* `@agjohnson `__: Release 8.0.1 (`#9180 `__) +* `@agjohnson `__: Spruce up docs on pull request builds (`#9177 `__) +* `@ericholscher `__: Fix RTD branding in the code (`#9175 `__) +* `@agjohnson `__: Fix copy issues on model fields (`#9170 `__) +* `@stsewd `__: Proxito: serve static files from the same domain as the docs (`#9168 `__) +* `@stsewd `__: User: delete organizations where the user is the last owner (`#9164 `__) +* `@ericholscher `__: Add a basic djstripe integration (`#9087 `__) +* `@stsewd `__: Custom domains: don't allow adding a custom domain on subprojects (`#8953 `__) + Version 8.0.1 ------------- diff --git a/docs/conf.py b/docs/conf.py index aad02feec52..c67d15a7da6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -67,7 +67,7 @@ master_doc = "index" copyright = "2010, Read the Docs, Inc & contributors" -version = "8.0.1" +version = "8.0.2" release = version exclude_patterns = ["_build"] default_role = "obj" diff --git a/package.json b/package.json index 8c06a122768..9411566fe3a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "readthedocs", - "version": "8.0.1", + "version": "8.0.2", "description": "Read the Docs build dependencies", "author": "Read the Docs, Inc ", "scripts": { diff --git a/readthedocs/__init__.py b/readthedocs/__init__.py index 3076560b02a..120fba6da70 100644 --- a/readthedocs/__init__.py +++ b/readthedocs/__init__.py @@ -1,4 +1,4 @@ """Read the Docs.""" -__version__ = "8.0.1" +__version__ = "8.0.2" diff --git a/setup.cfg b/setup.cfg index 39f8e1026b7..f9eb589442c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = readthedocs -version = 8.0.1 +version = 8.0.2 license = MIT description = Read the Docs builds and hosts documentation author = Read the Docs, Inc @@ -29,7 +29,7 @@ github_owner = readthedocs github_repo = readthedocs.org [bumpver] -current_version = "8.0.1" +current_version = "8.0.2" version_pattern = "MAJOR.MINOR.PATCH[TAGNUM]" commit_message = "Bump version {old_version} -> {new_version}" commit = False