Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 10.15.1 #11034

Merged
merged 1 commit into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
Version 10.15.1
---------------

:Date: January 16, 2024

* `@stsewd <https://github.com/stsewd>`__: Update docs requirements (`#11032 <https://github.com/readthedocs/readthedocs.org/pull/11032>`__)
* `@github-actions[bot] <https://github.com/github-actions[bot]>`__: Dependencies: all packages updated via pip-tools (`#11029 <https://github.com/readthedocs/readthedocs.org/pull/11029>`__)
* `@stsewd <https://github.com/stsewd>`__: Redirects: limit to 100 per project (`#11028 <https://github.com/readthedocs/readthedocs.org/pull/11028>`__)
* `@humitos <https://github.com/humitos>`__: Build: reset notifications when reseting a build (`#11027 <https://github.com/readthedocs/readthedocs.org/pull/11027>`__)
* `@humitos <https://github.com/humitos>`__: Development: define `SUPPORT_EMAIL` setting (`#11026 <https://github.com/readthedocs/readthedocs.org/pull/11026>`__)
* `@humitos <https://github.com/humitos>`__: Notifications: use Template's Django engine to render them (`#11024 <https://github.com/readthedocs/readthedocs.org/pull/11024>`__)
* `@humitos <https://github.com/humitos>`__: Notifications: render `Organization` notifications on details page (`#11023 <https://github.com/readthedocs/readthedocs.org/pull/11023>`__)
* `@humitos <https://github.com/humitos>`__: Notifications: add missing `format_values` (`#11021 <https://github.com/readthedocs/readthedocs.org/pull/11021>`__)
* `@humitos <https://github.com/humitos>`__: Notifications: save `format_values` when `on_retry` exception (`#11020 <https://github.com/readthedocs/readthedocs.org/pull/11020>`__)
* `@humitos <https://github.com/humitos>`__: Notifications: initialize exception properly (`#11019 <https://github.com/readthedocs/readthedocs.org/pull/11019>`__)
* `@humitos <https://github.com/humitos>`__: Notifications: use `instance.slug` instead of `instance.name` (`#11018 <https://github.com/readthedocs/readthedocs.org/pull/11018>`__)
* `@humitos <https://github.com/humitos>`__: Notification: oauth typo on URL name (`#11017 <https://github.com/readthedocs/readthedocs.org/pull/11017>`__)
* `@humitos <https://github.com/humitos>`__: Notifications: typo on constant (`#11015 <https://github.com/readthedocs/readthedocs.org/pull/11015>`__)
* `@humitos <https://github.com/humitos>`__: Build: typo on `on_retry` (`#11014 <https://github.com/readthedocs/readthedocs.org/pull/11014>`__)
* `@humitos <https://github.com/humitos>`__: Black: run black over all the code base (Part 2) (`#11013 <https://github.com/readthedocs/readthedocs.org/pull/11013>`__)
* `@humitos <https://github.com/humitos>`__: Build: remove browndates for config file (`#11012 <https://github.com/readthedocs/readthedocs.org/pull/11012>`__)
* `@humitos <https://github.com/humitos>`__: Release 10.15.0 (`#11011 <https://github.com/readthedocs/readthedocs.org/pull/11011>`__)
* `@humitos <https://github.com/humitos>`__: Notifications: small fixes found after reviewer (`#10996 <https://github.com/readthedocs/readthedocs.org/pull/10996>`__)
* `@humitos <https://github.com/humitos>`__: Config: better validation error for `conda.environment` (`#10979 <https://github.com/readthedocs/readthedocs.org/pull/10979>`__)

Version 10.15.0
---------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion readthedocs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Read the Docs."""


__version__ = "10.15.0"
__version__ = "10.15.1"
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down