diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4891115d593..592c9606f4c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,29 @@ +Version 7.5.1 +------------- + +:Date: April 04, 2022 + +* `@humitos `__: Github: use probot auto-assign bot (`#9069 `__) +* `@stsewd `__: Docs: update sphinx-tabs (`#9061 `__) +* `@stsewd `__: Docs: use sphinx-multiproject (`#9057 `__) +* `@humitos `__: Docs: `build.jobs` reference documentation (`#9056 `__) +* `@humitos `__: Build: use same hack for VCS and build environments (`#9055 `__) +* `@ericholscher `__: Fix jinja2 on embed tests (`#9053 `__) +* `@jsquyres `__: director.py: restore READTHEDOCS_VERSION_[TYPE|NAME] (`#9052 `__) +* `@ericholscher `__: Fix tests around jinja2 (`#9050 `__) +* `@humitos `__: Build: do not send VCS build status on specific exceptions (`#9049 `__) +* `@humitos `__: Proxito: do not serve non-existent versions (`#9048 `__) +* `@agjohnson `__: Release 7.5.0 (`#9047 `__) +* `@humitos `__: Build: Mercurial (`hg`) compatibility with old versions (`#9042 `__) +* `@eyllanesc `__: Fixes link (`#9041 `__) +* `@ericholscher `__: Fix jinja2 pinning on Sphinx 1.8 feature flagged projects (`#9036 `__) +* `@humitos `__: Copyright date (`#9022 `__) +* `@humitos `__: SyncRepositoryTask: rate limit to 1 per minute per project (`#9021 `__) +* `@humitos `__: Build: use same build environment for setup and build (`#9018 `__) +* `@stsewd `__: Git: fix annotated tags on lsremote (`#9017 `__) +* `@humitos `__: Build: implement `build.jobs` config file key (`#9016 `__) +* `@abravalheri `__: Improve displayed version name when building from PR (`#8237 `__) + Version 7.5.0 ------------- diff --git a/docs/conf.py b/docs/conf.py index b73a13fad67..439dd8c1542 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -67,7 +67,7 @@ master_doc = "index" copyright = "2010, Read the Docs, Inc & contributors" -version = "7.5.0" +version = "7.5.1" release = version exclude_patterns = ["_build"] default_role = "obj" diff --git a/package.json b/package.json index 4a4ce98fd9c..8b35f987e99 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "readthedocs", - "version": "7.5.0", + "version": "7.5.1", "description": "Read the Docs build dependencies", "author": "Read the Docs, Inc ", "scripts": { diff --git a/readthedocs/__init__.py b/readthedocs/__init__.py index a42e5d3488a..59014040fda 100644 --- a/readthedocs/__init__.py +++ b/readthedocs/__init__.py @@ -1,4 +1,4 @@ """Read the Docs.""" -__version__ = "7.5.0" +__version__ = "7.5.1" diff --git a/setup.cfg b/setup.cfg index 6c0f86059e0..cd2f4d43845 100644 --- a/setup.cfg +++ b/setup.cfg @@ -29,7 +29,7 @@ github_owner = readthedocs github_repo = readthedocs.org [bumpver] -current_version = "7.5.0" +current_version = "7.5.1" version_pattern = "MAJOR.MINOR.PATCH[TAGNUM]" commit_message = "Bump version {old_version} -> {new_version}" commit = False