From d74f10a413962875f2c64b8210e4c3430077101f Mon Sep 17 00:00:00 2001 From: Eric Holscher Date: Tue, 16 Jan 2024 08:17:40 -0800 Subject: [PATCH] Release 10.15.1 --- CHANGELOG.rst | 25 +++++++++++++++++++++++++ docs/conf.py | 2 +- package.json | 2 +- readthedocs/__init__.py | 2 +- setup.cfg | 4 ++-- 5 files changed, 30 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 43cb4715692..05ed6f2b41d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,28 @@ +Version 10.15.1 +--------------- + +:Date: January 16, 2024 + +* `@stsewd `__: Update docs requirements (`#11032 `__) +* `@github-actions[bot] `__: Dependencies: all packages updated via pip-tools (`#11029 `__) +* `@stsewd `__: Redirects: limit to 100 per project (`#11028 `__) +* `@humitos `__: Build: reset notifications when reseting a build (`#11027 `__) +* `@humitos `__: Development: define `SUPPORT_EMAIL` setting (`#11026 `__) +* `@humitos `__: Notifications: use Template's Django engine to render them (`#11024 `__) +* `@humitos `__: Notifications: render `Organization` notifications on details page (`#11023 `__) +* `@humitos `__: Notifications: add missing `format_values` (`#11021 `__) +* `@humitos `__: Notifications: save `format_values` when `on_retry` exception (`#11020 `__) +* `@humitos `__: Notifications: initialize exception properly (`#11019 `__) +* `@humitos `__: Notifications: use `instance.slug` instead of `instance.name` (`#11018 `__) +* `@humitos `__: Notification: oauth typo on URL name (`#11017 `__) +* `@humitos `__: Notifications: typo on constant (`#11015 `__) +* `@humitos `__: Build: typo on `on_retry` (`#11014 `__) +* `@humitos `__: Black: run black over all the code base (Part 2) (`#11013 `__) +* `@humitos `__: Build: remove browndates for config file (`#11012 `__) +* `@humitos `__: Release 10.15.0 (`#11011 `__) +* `@humitos `__: Notifications: small fixes found after reviewer (`#10996 `__) +* `@humitos `__: Config: better validation error for `conda.environment` (`#10979 `__) + Version 10.15.0 --------------- diff --git a/docs/conf.py b/docs/conf.py index 3728c0db384..4ff5446f8c6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -77,7 +77,7 @@ master_doc = "index" copyright = "Read the Docs, Inc & contributors" -version = "10.15.0" +version = "10.15.1" release = version exclude_patterns = ["_build", "shared", "_includes"] default_role = "obj" diff --git a/package.json b/package.json index 6211f719264..33b8c6c26f7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "readthedocs", - "version": "10.15.0", + "version": "10.15.1", "description": "Read the Docs build dependencies", "author": "Read the Docs, Inc ", "scripts": { diff --git a/readthedocs/__init__.py b/readthedocs/__init__.py index 50cb6fea2e3..94b4822c0c7 100644 --- a/readthedocs/__init__.py +++ b/readthedocs/__init__.py @@ -1,4 +1,4 @@ """Read the Docs.""" -__version__ = "10.15.0" +__version__ = "10.15.1" diff --git a/setup.cfg b/setup.cfg index 8978b13eab6..1bc874c2602 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = readthedocs -version = 10.15.0 +version = 10.15.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.15.0" +current_version = "10.15.1" version_pattern = "MAJOR.MINOR.PATCH[TAGNUM]" commit_message = "Bump version {old_version} -> {new_version}" commit = False