diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 810d7b06f1e..20051494c4d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,21 @@ +Version 8.1.2 +------------- + +:Date: June 06, 2022 + +* `@ericholscher `__: Fix Docs CI (`#9299 `__) +* `@agjohnson `__: Update mentions of our roadmap to be current (`#9293 `__) +* `@stsewd `__: lsremote: set max split when parsing remotes (`#9292 `__) +* `@humitos `__: Tests: make `tests-embedapi` require regular `tests` first (`#9289 `__) +* `@agjohnson `__: Update 8.1.1 changelog with hotfixes (`#9288 `__) +* `@stsewd `__: Cancel build: get build from the current project (`#9287 `__) +* `@stsewd `__: Python: increase 3.11 beta version (`#9284 `__) +* `@stsewd `__: Disable djstripe (`#9282 `__) +* `@stsewd `__: Python: use 3.11.0b2 (`#9278 `__) +* `@saadmk11 `__: Remote repository: Add user admin action for syncing remote repositories (`#9272 `__) +* `@stsewd `__: Requirements: update django-allauth (`#9249 `__) +* `@humitos `__: Build: implementation of `build.commands` (`#9150 `__) + Version 8.1.1 ------------- diff --git a/docs/conf.py b/docs/conf.py index e944e82b1f5..8f58fdefe03 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.1.1" +version = "8.1.2" release = version exclude_patterns = ["_build"] default_role = "obj" diff --git a/package.json b/package.json index b0aac122fe8..7120b36f3ca 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "readthedocs", - "version": "8.1.1", + "version": "8.1.2", "description": "Read the Docs build dependencies", "author": "Read the Docs, Inc ", "scripts": { diff --git a/readthedocs/__init__.py b/readthedocs/__init__.py index 26d1988ec6b..4dc24cb93c2 100644 --- a/readthedocs/__init__.py +++ b/readthedocs/__init__.py @@ -1,4 +1,4 @@ """Read the Docs.""" -__version__ = "8.1.1" +__version__ = "8.1.2" diff --git a/setup.cfg b/setup.cfg index 38db68111ea..eb79bc7524f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = readthedocs -version = 8.1.1 +version = 8.1.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.1.1" +current_version = "8.1.2" version_pattern = "MAJOR.MINOR.PATCH[TAGNUM]" commit_message = "Bump version {old_version} -> {new_version}" commit = False