diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ad2955e2ae3..d4d1fd56126 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,27 @@ +Version 11.1.0 +-------------- + +:Date: June 18, 2024 + +* `@olgaigig `__: Update docs.rst (`#11422 `__) +* `@humitos `__: Build: add support for Ubuntu 24.04 LTS (`#11421 `__) +* `@humitos `__: Builds: don't call `git clean` anymore (`#11420 `__) +* `@github-actions[bot] `__: Dependencies: all packages updated via pip-tools (`#11415 `__) +* `@humitos `__: New dashboard: use `app.` instead of `beta.` (`#11412 `__) +* `@humitos `__: Build: remove "beta" from `build.commands` (`#11411 `__) +* `@humitos `__: Docs: update "Example projects" a little (`#11404 `__) +* `@stsewd `__: Oauth: Fix GitLab access token URL (`#11402 `__) +* `@humitos `__: Build: update `asdf` and its plugins so we can build latest versions (`#11401 `__) +* `@humitos `__: Settings: revert `USE_PROMOS` setting (`#11400 `__) +* `@ericholscher `__: Add Unknown for missing VCS class (`#11398 `__) +* `@ericholscher `__: Release 11.0.0 (`#11397 `__) +* `@rffontenelle `__: GitHub with uppercase H in onboard_import.html (`#11396 `__) +* `@humitos `__: Templates: pass `ADMIN_URL` into context (`#11394 `__) +* `@rffontenelle `__: Uppercase G for Gold membership in subscription_detail.html (`#11388 `__) +* `@humitos `__: Build: update all `build.tools` and add latest versions (`#11386 `__) +* `@humitos `__: Translations: disable `zh` code (`#11385 `__) +* `@humitos `__: VCS: remove code for old VCS support (`#11377 `__) + Version 11.0.0 -------------- diff --git a/docs/conf.py b/docs/conf.py index da091227893..d619182e6a5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -76,7 +76,7 @@ master_doc = "index" copyright = "Read the Docs, Inc & contributors" -version = "11.0.0" +version = "11.1.0" release = version exclude_patterns = ["_build", "shared", "_includes"] default_role = "obj" diff --git a/package.json b/package.json index fe0a45bc258..abde26a934f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "readthedocs", - "version": "11.0.0", + "version": "11.1.0", "description": "Read the Docs build dependencies", "author": "Read the Docs, Inc ", "scripts": { diff --git a/readthedocs/__init__.py b/readthedocs/__init__.py index f5bd9f8c2fd..66969a8122c 100644 --- a/readthedocs/__init__.py +++ b/readthedocs/__init__.py @@ -1,4 +1,4 @@ """Read the Docs.""" -__version__ = "11.0.0" +__version__ = "11.1.0" diff --git a/setup.cfg b/setup.cfg index 3e57eaf07fe..9d3a921991b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = readthedocs -version = 11.0.0 +version = 11.1.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.0.0" +current_version = "11.1.0" version_pattern = "MAJOR.MINOR.PATCH[TAGNUM]" commit_message = "Bump version {old_version} -> {new_version}" commit = False