diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7e9bada4198..cf24c09376f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,28 @@ +Version 11.2.0 +-------------- + +:Date: July 16, 2024 + +* `@humitos `__: Pin the theme to a commit (`#11472 `__) +* `@humitos `__: Dos: update them based on addons updates (`#11468 `__) +* `@stsewd `__: CSP: apply extra CSP rules only when ext-theme is enabled (`#11466 `__) +* `@ericholscher `__: Refactor admin views to use the SuccessMessageMixin (`#11463 `__) +* `@stsewd `__: Tests: use a faster password hasher (`#11462 `__) +* `@stsewd `__: Fix slack notifications for stripe events (`#11460 `__) +* `@ericholscher `__: Remove old flyout image (`#11459 `__) +* `@stsewd `__: API V3: Filter build notifications by current project (`#11458 `__) +* `@humitos `__: Docs: remove past sponsors and old blog post link (`#11457 `__) +* `@humitos `__: Docs: tell users to set the canonical URL manually (`#11455 `__) +* `@ericholscher `__: Release 11.1.3 (`#11454 `__) +* `@stsewd `__: API V3: Allow other users to see build notifications from public projects (`#11449 `__) +* `@plaindocs `__: Add minimal viable docs for addons (`#11444 `__) +* `@humitos `__: Proxito: remove redirect for `README.html` files (`#11443 `__) +* `@stsewd `__: CSP: remove obsolete block-all-mixed-content directive (`#11436 `__) +* `@stsewd `__: API V3: avoid leaking information through expandable fields (`#11381 `__) +* `@janbrasna `__: chore: Update guidelines links (`#11261 `__) +* `@nakamura-to `__: Correcte the tx push command (`#11204 `__) +* `@humitos `__: Build: rename PDF/ePUB filename to valid one automatically (`#11198 `__) + Version 11.1.3 -------------- diff --git a/docs/conf.py b/docs/conf.py index 8a7bf918617..d5abf746ecb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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" diff --git a/package.json b/package.json index dce00148ced..cf4d2c488e2 100644 --- a/package.json +++ b/package.json @@ -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 ", "scripts": { diff --git a/readthedocs/__init__.py b/readthedocs/__init__.py index eae27bd56be..40732d157ca 100644 --- a/readthedocs/__init__.py +++ b/readthedocs/__init__.py @@ -1,4 +1,4 @@ """Read the Docs.""" -__version__ = "11.1.3" +__version__ = "11.2.0" diff --git a/setup.cfg b/setup.cfg index bb0f63dcc99..5b65630c4f2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 @@ -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