diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5e9d76d65fe..44d6b6f9422 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,29 @@ +Version 11.7.0 +-------------- + +:Date: August 27, 2024 + +* `@github-actions[bot] `__: Dependencies: all packages updated via pip-tools (`#11566 `__) +* `@kurtmckee `__: Fix a minor typo (`#11565 `__) +* `@agjohnson `__: Use clone_url for remote repository field (`#11564 `__) +* `@stsewd `__: Tasks: delete closed PRs every 30 minutes (`#11563 `__) +* `@stsewd `__: Settings: define threshold setting for removing projects from ES (`#11560 `__) +* `@humitos `__: Add project: improve way to get the `basics` form (`#11558 `__) +* `@stsewd `__: Search: add function to re-index a project (`#11555 `__) +* `@humitos `__: Release 11.6.0 (`#11554 `__) +* `@humitos `__: Docs: make URLs not linkable (`#11553 `__) +* `@stsewd `__: Update common (`#11552 `__) +* `@humitos `__: Docs: make translation section more generic (`#11549 `__) +* `@mgeier `__: Update instructions for Jupyter notebook galleries (`#11545 `__) +* `@stsewd `__: Allauth: 2FA (`#11524 `__) +* `@ericholscher `__: Release 10.21.0 (`#11185 `__) +* `@humitos `__: Build: show the YAML config file before validating it (`#11175 `__) +* `@humitos `__: Release 10.18.0 (`#11096 `__) +* `@github-actions[bot] `__: Dependencies: all packages updated via pip-tools (`#11090 `__) +* `@stsewd `__: Build: use version slug for get_version_slug (`#11085 `__) +* `@stsewd `__: Integrations: Don't allow webhooks without a secret (`#11083 `__) +* `@humitos `__: Addons: sorting algorithm for versions customizable on flyout (`#11069 `__) + Version 11.6.0 -------------- diff --git a/docs/conf.py b/docs/conf.py index bed7984c828..ddd04d7336d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -76,7 +76,7 @@ master_doc = "index" copyright = "Read the Docs, Inc & contributors" -version = "11.6.0" +version = "11.7.0" release = version exclude_patterns = ["_build", "shared", "_includes"] default_role = "obj" diff --git a/package.json b/package.json index b90e4aa5e55..480f30b3025 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "readthedocs", - "version": "11.6.0", + "version": "11.7.0", "description": "Read the Docs build dependencies", "author": "Read the Docs, Inc ", "scripts": { diff --git a/readthedocs/__init__.py b/readthedocs/__init__.py index 463aad80da7..be40dc19548 100644 --- a/readthedocs/__init__.py +++ b/readthedocs/__init__.py @@ -1,4 +1,4 @@ """Read the Docs.""" -__version__ = "11.6.0" +__version__ = "11.7.0" diff --git a/setup.cfg b/setup.cfg index 89df8190791..5d4bae4ff17 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = readthedocs -version = 11.6.0 +version = 11.7.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.6.0" +current_version = "11.7.0" version_pattern = "MAJOR.MINOR.PATCH[TAGNUM]" commit_message = "Bump version {old_version} -> {new_version}" commit = False