diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a85df6926f7..d52ab0d5888 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,29 @@ +Version 11.8.0 +-------------- + +:Date: September 25, 2024 + +* `@agjohnson `__: Prefetch build and project on version list (`#11616 `__) +* `@ericholscher `__: Add speed up indexes (`#11614 `__) +* `@agjohnson `__: Add support for successful build prefetch (`#11613 `__) +* `@ericholscher `__: Add date version index on build (`#11612 `__) +* `@humitos `__: Use theme 3.0.0rc2 (version/language selector) (`#11611 `__) +* `@github-actions[bot] `__: Dependencies: all packages updated via pip-tools (`#11609 `__) +* `@agjohnson `__: Make terminology and paths consistent for onboarding announcements (`#11608 `__) +* `@humitos `__: Add project: check YAML file for specific branch (`#11607 `__) +* `@agjohnson `__: Drop unnecessary CSP directives for gold view (`#11605 `__) +* `@pllim `__: Fix minor typo in "Version states" (`#11603 `__) +* `@github-actions[bot] `__: Dependencies: all packages updated via pip-tools (`#11602 `__) +* `@dbaston `__: Docs: Handle long commit messages in [skip ci] example (`#11601 `__) +* `@ericholscher `__: Add exit_code to build errors (`#11597 `__) +* `@agjohnson `__: Conditionally disabled custom 404 pages on dev docs (`#11596 `__) +* `@humitos `__: Release 11.7.2 (`#11595 `__) +* `@humitos `__: Docs: simplify "Add project" page (`#11559 `__) +* `@humitos `__: Docs: make translation section more generic (`#11549 `__) +* `@plaindocs `__: Add list of supported tools (`#11547 `__) +* `@humitos `__: Addons: prepare Proxito and dashboard to enable them by default (`#11513 `__) +* `@ericholscher `__: Add success messages for Organization views (`#11480 `__) + Version 11.7.2 -------------- diff --git a/docs/conf.py b/docs/conf.py index 71446013a2e..00afc1e0fb7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -81,7 +81,7 @@ master_doc = "index" copyright = "Read the Docs, Inc & contributors" -version = "11.7.2" +version = "11.8.0" release = version exclude_patterns = ["_build", "shared", "_includes"] default_role = "obj" diff --git a/package.json b/package.json index dc7b58c58c8..dfebbd29719 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "readthedocs", - "version": "11.7.2", + "version": "11.8.0", "description": "Read the Docs build dependencies", "author": "Read the Docs, Inc ", "scripts": { diff --git a/readthedocs/__init__.py b/readthedocs/__init__.py index cdda40ca9e1..73428bfea94 100644 --- a/readthedocs/__init__.py +++ b/readthedocs/__init__.py @@ -1,4 +1,4 @@ """Read the Docs.""" -__version__ = "11.7.2" +__version__ = "11.8.0" diff --git a/setup.cfg b/setup.cfg index 1583a45d02c..671268da4ac 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = readthedocs -version = 11.7.2 +version = 11.8.0 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 = "11.7.2" +current_version = "11.8.0" version_pattern = "MAJOR.MINOR.PATCH[TAGNUM]" commit_message = "Bump version {old_version} -> {new_version}" commit = False