Skip to content

Commit 6c9a93e

Browse files
authored
Release 13.2.0 (#12195)
1 parent 8d6a42c commit 6c9a93e

File tree

5 files changed

+33
-5
lines changed

5 files changed

+33
-5
lines changed

CHANGELOG.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
Version 13.2.0
2+
--------------
3+
4+
:Date: May 20, 2025
5+
6+
* `@barseghyanartur <https://github.com/barseghyanartur>`__: Add info on generating docs in `.txt` format (`#12194 <https://github.com/readthedocs/readthedocs.org/pull/12194>`__)
7+
* `@stsewd <https://github.com/stsewd>`__: Project: add is_github_app_project helper method (`#12193 <https://github.com/readthedocs/readthedocs.org/pull/12193>`__)
8+
* `@pjfan <https://github.com/pjfan>`__: Delete how to change url versioning page (`#12192 <https://github.com/readthedocs/readthedocs.org/pull/12192>`__)
9+
* `@pavithraes <https://github.com/pavithraes>`__: Add note about contributing to other RTD projects (`#12191 <https://github.com/readthedocs/readthedocs.org/pull/12191>`__)
10+
* `@pavithraes <https://github.com/pavithraes>`__: Update dev site build step (`#12190 <https://github.com/readthedocs/readthedocs.org/pull/12190>`__)
11+
* `@sirosen <https://github.com/sirosen>`__: Add an example of `pip install --group` (`#12189 <https://github.com/readthedocs/readthedocs.org/pull/12189>`__)
12+
* `@pavithraes <https://github.com/pavithraes>`__: Remove mention of Gitter from contributor docs (`#12188 <https://github.com/readthedocs/readthedocs.org/pull/12188>`__)
13+
* `@pjfan <https://github.com/pjfan>`__: Link previews docs update (`#12187 <https://github.com/readthedocs/readthedocs.org/pull/12187>`__)
14+
* `@pavithraes <https://github.com/pavithraes>`__: Update faq about changing project slugs (`#12184 <https://github.com/readthedocs/readthedocs.org/pull/12184>`__)
15+
* `@humitos <https://github.com/humitos>`__: Development: always use webpack on development (`#12182 <https://github.com/readthedocs/readthedocs.org/pull/12182>`__)
16+
* `@verisimilidude2 <https://github.com/verisimilidude2>`__: Update 'built in' info (`#12180 <https://github.com/readthedocs/readthedocs.org/pull/12180>`__)
17+
* `@MilaZhou22 <https://github.com/MilaZhou22>`__: Add doc tools to frontpage (`#12179 <https://github.com/readthedocs/readthedocs.org/pull/12179>`__)
18+
* `@stsewd <https://github.com/stsewd>`__: GitHub App: block GH app users to re-connect to old OAuth app (`#12175 <https://github.com/readthedocs/readthedocs.org/pull/12175>`__)
19+
* `@stsewd <https://github.com/stsewd>`__: Downgrade redis (`#12173 <https://github.com/readthedocs/readthedocs.org/pull/12173>`__)
20+
* `@agjohnson <https://github.com/agjohnson>`__: Downgrade Redis back to 5.2.1 (`#12172 <https://github.com/readthedocs/readthedocs.org/pull/12172>`__)
21+
* `@agjohnson <https://github.com/agjohnson>`__: Release 13.1.1 (`#12170 <https://github.com/readthedocs/readthedocs.org/pull/12170>`__)
22+
* `@ericholscher <https://github.com/ericholscher>`__: Document ability to set `public` on EnvironmentVariable API v3 (`#12169 <https://github.com/readthedocs/readthedocs.org/pull/12169>`__)
23+
* `@stsewd <https://github.com/stsewd>`__: Build: escape all whitespaces (`#12152 <https://github.com/readthedocs/readthedocs.org/pull/12152>`__)
24+
* `@humitos <https://github.com/humitos>`__: Build: update build tools (`#12143 <https://github.com/readthedocs/readthedocs.org/pull/12143>`__)
25+
* `@stsewd <https://github.com/stsewd>`__: Build: support cloning private repos with token (`#12115 <https://github.com/readthedocs/readthedocs.org/pull/12115>`__)
26+
* `@stsewd <https://github.com/stsewd>`__: Build: use scoped credentials for interacting with S3 (`#12078 <https://github.com/readthedocs/readthedocs.org/pull/12078>`__)
27+
* `@coroa <https://github.com/coroa>`__: More concise uv example with docs (`#12064 <https://github.com/readthedocs/readthedocs.org/pull/12064>`__)
28+
129
Version 13.1.1
230
--------------
331

docs/conf.py

Lines changed: 1 addition & 1 deletion
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 = "13.1.1"
84+
version = "13.2.0"
8585
release = version
8686
exclude_patterns = ["_build", "shared", "_includes"]
8787
default_role = "obj"

package.json

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

readthedocs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Read the Docs."""
22

3-
__version__ = "13.1.1"
3+
__version__ = "13.2.0"

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = readthedocs
3-
version = 13.1.1
3+
version = 13.2.0
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 = "13.1.1"
32+
current_version = "13.2.0"
3333
version_pattern = "MAJOR.MINOR.PATCH[TAGNUM]"
3434
commit_message = "Bump version {old_version} -> {new_version}"
3535
commit = False

0 commit comments

Comments
 (0)