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.2.0 #11473

Merged
merged 1 commit into from
Jul 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 11.2.0
--------------

:Date: July 16, 2024

* `@humitos <https://github.com/humitos>`__: Pin the theme to a commit (`#11472 <https://github.com/readthedocs/readthedocs.org/pull/11472>`__)
* `@humitos <https://github.com/humitos>`__: Dos: update them based on addons updates (`#11468 <https://github.com/readthedocs/readthedocs.org/pull/11468>`__)
* `@stsewd <https://github.com/stsewd>`__: CSP: apply extra CSP rules only when ext-theme is enabled (`#11466 <https://github.com/readthedocs/readthedocs.org/pull/11466>`__)
* `@ericholscher <https://github.com/ericholscher>`__: Refactor admin views to use the SuccessMessageMixin (`#11463 <https://github.com/readthedocs/readthedocs.org/pull/11463>`__)
* `@stsewd <https://github.com/stsewd>`__: Tests: use a faster password hasher (`#11462 <https://github.com/readthedocs/readthedocs.org/pull/11462>`__)
* `@stsewd <https://github.com/stsewd>`__: Fix slack notifications for stripe events (`#11460 <https://github.com/readthedocs/readthedocs.org/pull/11460>`__)
* `@ericholscher <https://github.com/ericholscher>`__: Remove old flyout image (`#11459 <https://github.com/readthedocs/readthedocs.org/pull/11459>`__)
* `@stsewd <https://github.com/stsewd>`__: API V3: Filter build notifications by current project (`#11458 <https://github.com/readthedocs/readthedocs.org/pull/11458>`__)
* `@humitos <https://github.com/humitos>`__: Docs: remove past sponsors and old blog post link (`#11457 <https://github.com/readthedocs/readthedocs.org/pull/11457>`__)
* `@humitos <https://github.com/humitos>`__: Docs: tell users to set the canonical URL manually (`#11455 <https://github.com/readthedocs/readthedocs.org/pull/11455>`__)
* `@ericholscher <https://github.com/ericholscher>`__: Release 11.1.3 (`#11454 <https://github.com/readthedocs/readthedocs.org/pull/11454>`__)
* `@stsewd <https://github.com/stsewd>`__: API V3: Allow other users to see build notifications from public projects (`#11449 <https://github.com/readthedocs/readthedocs.org/pull/11449>`__)
* `@plaindocs <https://github.com/plaindocs>`__: Add minimal viable docs for addons (`#11444 <https://github.com/readthedocs/readthedocs.org/pull/11444>`__)
* `@humitos <https://github.com/humitos>`__: Proxito: remove redirect for `README.html` files (`#11443 <https://github.com/readthedocs/readthedocs.org/pull/11443>`__)
* `@stsewd <https://github.com/stsewd>`__: CSP: remove obsolete block-all-mixed-content directive (`#11436 <https://github.com/readthedocs/readthedocs.org/pull/11436>`__)
* `@stsewd <https://github.com/stsewd>`__: API V3: avoid leaking information through expandable fields (`#11381 <https://github.com/readthedocs/readthedocs.org/pull/11381>`__)
* `@janbrasna <https://github.com/janbrasna>`__: chore: Update guidelines links (`#11261 <https://github.com/readthedocs/readthedocs.org/pull/11261>`__)
* `@nakamura-to <https://github.com/nakamura-to>`__: Correcte the tx push command (`#11204 <https://github.com/readthedocs/readthedocs.org/pull/11204>`__)
* `@humitos <https://github.com/humitos>`__: Build: rename PDF/ePUB filename to valid one automatically (`#11198 <https://github.com/readthedocs/readthedocs.org/pull/11198>`__)

Version 11.1.3
--------------

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

master_doc = "index"
copyright = "Read the Docs, Inc & contributors"
version = "11.1.3"
version = "11.2.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.1.3",
"version": "11.2.0",
"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__ = "11.1.3"
__version__ = "11.2.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.1.3
version = 11.2.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.1.3"
current_version = "11.2.0"
version_pattern = "MAJOR.MINOR.PATCH[TAGNUM]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = False
Expand Down
Loading