diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f91e3f8f031..4891115d593 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,23 @@ +Version 7.5.0 +------------- + +:Date: March 28, 2022 + +* `@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 `__) +* `@agjohnson `__: Add bumpver configuration (`#9029 `__) +* `@davidfischer `__: Update the community ads application link (`#9028 `__) +* `@ericholscher `__: Don't use master branch explicitly in requirements (`#9025 `__) +* `@humitos `__: Copyright date (`#9022 `__) +* `@humitos `__: GitHub OAuth: use bigger pages to make fewer requests (`#9020 `__) +* `@humitos `__: Build: use same build environment for setup and build (`#9018 `__) +* `@stsewd `__: Git: fix annotated tags on lsremote (`#9017 `__) +* `@humitos `__: Build: log when a build is reset (`#9015 `__) +* `@pyup-bot `__: pyup: Scheduled weekly dependency update for week 11 (`#9012 `__) +* `@humitos `__: Build: allow users to use Ubuntu 22.04 LTS (`#9009 `__) +* `@humitos `__: Build: proof of concept for pre/post build commands (`build.jobs`) (`#9002 `__) + Version 7.4.2 ------------- diff --git a/docs/conf.py b/docs/conf.py index 06909202051..d8ce6093444 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -65,7 +65,7 @@ master_doc = "index" copyright = "2010, Read the Docs, Inc & contributors" -version = "7.4.2" +version = "7.5.0" release = version exclude_patterns = ['_build'] default_role = 'obj' diff --git a/package.json b/package.json index d73f0c9caec..4a4ce98fd9c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "readthedocs", - "version": "7.4.2", + "version": "7.5.0", "description": "Read the Docs build dependencies", "author": "Read the Docs, Inc ", "scripts": { diff --git a/readthedocs/__init__.py b/readthedocs/__init__.py index f9df22cf808..a42e5d3488a 100644 --- a/readthedocs/__init__.py +++ b/readthedocs/__init__.py @@ -1,4 +1,4 @@ """Read the Docs.""" -__version__ = "7.4.2" +__version__ = "7.5.0" diff --git a/setup.cfg b/setup.cfg index 4e3f28de8f0..6c0f86059e0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -29,7 +29,7 @@ github_owner = readthedocs github_repo = readthedocs.org [bumpver] -current_version = "7.4.2" +current_version = "7.5.0" version_pattern = "MAJOR.MINOR.PATCH[TAGNUM]" commit_message = "Bump version {old_version} -> {new_version}" commit = False