From 6747f91a440937e2b5088e9168ad1b87d6611129 Mon Sep 17 00:00:00 2001 From: Eric Holscher <25510+ericholscher@users.noreply.github.com> Date: Tue, 23 Apr 2024 08:25:03 -0700 Subject: [PATCH] Release 10.24.1 (#11296) --- CHANGELOG.rst | 17 +++++++++++++++++ docs/conf.py | 2 +- package.json | 2 +- readthedocs/__init__.py | 2 +- setup.cfg | 4 ++-- 5 files changed, 22 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 758e89b24aa..1cc25a040fb 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,20 @@ +Version 10.24.1 +--------------- + +:Date: April 23, 2024 + +* `@github-actions[bot] `__: Dependencies: all packages updated via pip-tools (`#11294 `__) +* `@humitos `__: Docs: explain how to use `uv` to install dependencies (`#11290 `__) +* `@humitos `__: Dashboard: promote features in the right bar (`#11287 `__) +* `@humitos `__: Cleanup: delete `yaml_load_safely` (`#11285 `__) +* `@stsewd `__: Notifications: allow usernames with dots (`#11283 `__) +* `@humitos `__: Release 10.24.0 (`#11281 `__) +* `@humitos `__: Docs: use the `sphinx-rtd-theme` with support for addons integration (`#11279 `__) +* `@humitos `__: Addons: refactor sorting versions for flyout (`#11278 `__) +* `@humitos `__: Build: remove `append_conf` _magic_ from MkDocs (`#11206 `__) +* `@humitos `__: APIv3: add more generic fields (`#11205 `__) +* `@ewdurbin `__: implement multiple .readthedocs.yml files per repo (`#10001 `__) + Version 10.24.0 --------------- diff --git a/docs/conf.py b/docs/conf.py index a7ef10cd81f..be9d87c57e9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -77,7 +77,7 @@ master_doc = "index" copyright = "Read the Docs, Inc & contributors" -version = "10.24.0" +version = "10.24.1" release = version exclude_patterns = ["_build", "shared", "_includes"] default_role = "obj" diff --git a/package.json b/package.json index 2459c551127..0c2fe49966c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "readthedocs", - "version": "10.24.0", + "version": "10.24.1", "description": "Read the Docs build dependencies", "author": "Read the Docs, Inc ", "scripts": { diff --git a/readthedocs/__init__.py b/readthedocs/__init__.py index 7e2b23d5aa8..ded852ec199 100644 --- a/readthedocs/__init__.py +++ b/readthedocs/__init__.py @@ -1,4 +1,4 @@ """Read the Docs.""" -__version__ = "10.24.0" +__version__ = "10.24.1" diff --git a/setup.cfg b/setup.cfg index e38e3af29ee..e744519a6c9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = readthedocs -version = 10.24.0 +version = 10.24.1 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 = "10.24.0" +current_version = "10.24.1" version_pattern = "MAJOR.MINOR.PATCH[TAGNUM]" commit_message = "Bump version {old_version} -> {new_version}" commit = False