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 11.14.0 #11778

Merged
merged 1 commit into from
Nov 19, 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
22 changes: 22 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
Version 11.14.0
---------------

:Date: November 19, 2024

* `@stsewd </~https://github.com/stsewd>`__: Docs: update connected accounts steps to use env vars (`#11777 </~https://github.com/readthedocs/readthedocs.org/pull/11777>`__)
* `@stsewd </~https://github.com/stsewd>`__: Fix ext-theme test (`#11776 </~https://github.com/readthedocs/readthedocs.org/pull/11776>`__)
* `@github-actions[bot] </~https://github.com/github-actions[bot]>`__: Dependencies: all packages updated via pip-tools (`#11771 </~https://github.com/readthedocs/readthedocs.org/pull/11771>`__)
* `@humitos </~https://github.com/humitos>`__: Addons: `load_when_embedded` config (`#11765 </~https://github.com/readthedocs/readthedocs.org/pull/11765>`__)
* `@humitos </~https://github.com/humitos>`__: Addons: rename fields on API response (`#11764 </~https://github.com/readthedocs/readthedocs.org/pull/11764>`__)
* `@humitos </~https://github.com/humitos>`__: Docs: disable `sphinx-hoverxref` in our docs (`#11762 </~https://github.com/readthedocs/readthedocs.org/pull/11762>`__)
* `@ericholscher </~https://github.com/ericholscher>`__: Update migration to not conflict (`#11761 </~https://github.com/readthedocs/readthedocs.org/pull/11761>`__)
* `@ericholscher </~https://github.com/ericholscher>`__: Release 11.13.0 (`#11760 </~https://github.com/readthedocs/readthedocs.org/pull/11760>`__)
* `@humitos </~https://github.com/humitos>`__: Adddons: allow injecting an "always live" JavaScript file (`#11758 </~https://github.com/readthedocs/readthedocs.org/pull/11758>`__)
* `@humitos </~https://github.com/humitos>`__: Pin pip for pip-tools for now (`#11756 </~https://github.com/readthedocs/readthedocs.org/pull/11756>`__)
* `@humitos </~https://github.com/humitos>`__: Addons: resolve URLs for file tree diff API response (`#11749 </~https://github.com/readthedocs/readthedocs.org/pull/11749>`__)
* `@humitos </~https://github.com/humitos>`__: Addons: API response for tooltips (`#11746 </~https://github.com/readthedocs/readthedocs.org/pull/11746>`__)
* `@laymonage </~https://github.com/laymonage>`__: Build tools: update `latest` versions (`#11742 </~https://github.com/readthedocs/readthedocs.org/pull/11742>`__)
* `@humitos </~https://github.com/humitos>`__: Addons: remove old `X-RTD-Hosting-Integrations` HTTP header (`#11653 </~https://github.com/readthedocs/readthedocs.org/pull/11653>`__)
* `@humitos </~https://github.com/humitos>`__: Build: remove "addons enabled by default" notification (`#11651 </~https://github.com/readthedocs/readthedocs.org/pull/11651>`__)
* `@agjohnson </~https://github.com/agjohnson>`__: Fix site-wide new dashboard notification (`#11543 </~https://github.com/readthedocs/readthedocs.org/pull/11543>`__)

Version 11.13.0
---------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@

master_doc = "index"
copyright = "Read the Docs, Inc & contributors"
version = "11.13.0"
version = "11.14.0"
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": "11.13.0",
"version": "11.14.0",
"description": "Read the Docs build dependencies",
"author": "Read the Docs, Inc <support@readthedocs.com>",
"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__ = "11.13.0"
__version__ = "11.14.0"
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 = 11.13.0
version = 11.14.0
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 = "11.13.0"
current_version = "11.14.0"
version_pattern = "MAJOR.MINOR.PATCH[TAGNUM]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = False
Expand Down
Loading