Skip to content

Commit ac04aa6

Browse files
authored
Release 12.0.2 (#12068)
1 parent 29ab345 commit ac04aa6

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

CHANGELOG.rst

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
Version 12.0.2
2+
--------------
3+
4+
:Date: March 25, 2025
5+
6+
* `@stsewd <https://github.com/stsewd>`__: API v3: document rate limit and pagination (`#12063 <https://github.com/readthedocs/readthedocs.org/pull/12063>`__)
7+
* `@stsewd <https://github.com/stsewd>`__: Social accounts: sync remote repositories when a new connection is added (`#12062 <https://github.com/readthedocs/readthedocs.org/pull/12062>`__)
8+
* `@stsewd <https://github.com/stsewd>`__: Small improvements on PR previews handling (`#12061 <https://github.com/readthedocs/readthedocs.org/pull/12061>`__)
9+
* `@stsewd <https://github.com/stsewd>`__: Allauth: update deprecated settings (`#12058 <https://github.com/readthedocs/readthedocs.org/pull/12058>`__)
10+
* `@humitos <https://github.com/humitos>`__: pip tools: use Python 3.12 (`#12055 <https://github.com/readthedocs/readthedocs.org/pull/12055>`__)
11+
* `@humitos <https://github.com/humitos>`__: Requirements: pin and downgrade `xmlsec` (`#12054 <https://github.com/readthedocs/readthedocs.org/pull/12054>`__)
12+
* `@humitos <https://github.com/humitos>`__: Release 12.0.1 (`#12053 <https://github.com/readthedocs/readthedocs.org/pull/12053>`__)
13+
* `@stsewd <https://github.com/stsewd>`__: Subscriptions: improve subscription detection and respect never_disable (`#12046 <https://github.com/readthedocs/readthedocs.org/pull/12046>`__)
14+
* `@stsewd <https://github.com/stsewd>`__: Remote repositories: filter by vcs provider when deleting (`#12015 <https://github.com/readthedocs/readthedocs.org/pull/12015>`__)
15+
116
Version 12.0.1
217
--------------
318

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181

8282
master_doc = "index"
8383
copyright = "Read the Docs, Inc & contributors"
84-
version = "12.0.1"
84+
version = "12.0.2"
8585
release = version
8686
exclude_patterns = ["_build", "shared", "_includes"]
8787
default_role = "obj"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "readthedocs",
3-
"version": "12.0.1",
3+
"version": "12.0.2",
44
"description": "Read the Docs build dependencies",
55
"author": "Read the Docs, Inc <[email protected]>",
66
"scripts": {

readthedocs/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Read the Docs."""
22

3-
__version__ = "12.0.1"
3+
__version__ = "12.0.2"

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = readthedocs
3-
version = 12.0.1
3+
version = 12.0.2
44
license = MIT
55
description = Read the Docs builds and hosts documentation
66
author = Read the Docs, Inc
@@ -29,7 +29,7 @@ github_owner = readthedocs
2929
github_repo = readthedocs.org
3030

3131
[bumpver]
32-
current_version = "12.0.1"
32+
current_version = "12.0.2"
3333
version_pattern = "MAJOR.MINOR.PATCH[TAGNUM]"
3434
commit_message = "Bump version {old_version} -> {new_version}"
3535
commit = False

0 commit comments

Comments
 (0)