Skip to content

Commit 09d0654

Browse files
committed
Release 0.23.0
1 parent 1cd1002 commit 09d0654

File tree

7 files changed

+59
-4
lines changed

7 files changed

+59
-4
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ repos:
1010
hooks:
1111
- id: trailing-whitespace
1212
exclude: "^(dist/|public/|tests/__snapshots__/).*$"
13-
- id: check-added-large-files
13+
# Our .js.map file takes ~2Mb now.
14+
# - id: check-added-large-files
1415
- id: check-case-conflict
1516
- id: check-executables-have-shebangs
1617
- id: check-merge-conflict

CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ CHANGELOG
33

44
.. The text for the changelog is manually generated for now.
55
6+
Version v0.23.0
7+
---------------
8+
9+
:date: Nov 26, 2024
10+
11+
* Enable DocDiff via a query string (``readthedocs-diff=true``)
12+
* Don't show notification on default version
13+
* Improvements to Links Preview (using a default CSS selector and heuristic to detect the documentation tool)
14+
615
Version v0.22.0
716
---------------
817

bumpver.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpver]
2-
current_version = "0.22.0"
2+
current_version = "0.23.0"
33
version_pattern = "MAJOR.MINOR.PATCH[TAG]"
44
commit_message = "Release {new_version}"
55
tag_message = "{new_version}"

dist/readthedocs-addons.js

Lines changed: 44 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/readthedocs-addons.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@readthedocs/addons",
3-
"version": "0.22.0",
3+
"version": "0.23.0",
44
"description": "Read the Docs Addons to embed into documentation pages",
55
"main": "dist/readthedocs-addons.js",
66
"scripts": {

src/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
export const ADDONS_API_VERSION = "1";
1717
export const ADDONS_API_ENDPOINT = "/_/addons/";
1818
// This is managed by bumpver automatically
19-
export const CLIENT_VERSION = "0.22.0";
19+
export const CLIENT_VERSION = "0.23.0";
2020

2121
// WEBPACK_ variables come from Webpack's DefinePlugin and Web Test Runner's RollupReplace plugin
2222
export const IS_TESTING =

0 commit comments

Comments
 (0)