Skip to content

Commit 3815b3a

Browse files
committed
Release 0.27.0
1 parent 19460d7 commit 3815b3a

File tree

6 files changed

+18
-8
lines changed

6 files changed

+18
-8
lines changed

CHANGELOG.rst

+10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ CHANGELOG
33

44
.. The text for the changelog is manually generated for now.
55
6+
Version v0.27.0
7+
---------------
8+
9+
:date: Jan 21, 2025
10+
11+
* Save the ``ReadTheDocsData`` event into the global object (:pr:`474`)
12+
* Improve File Tree Diff UI element to be more discrete (:pr:`494`)
13+
* Add VitePress as a known documentation tool (:pr:`505`)
14+
* Packages: updated via ncu -u (:pr:`509`)
15+
616
Version v0.26.0
717
---------------
818

bumpver.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpver]
2-
current_version = "0.26.0"
2+
current_version = "0.27.0"
33
version_pattern = "MAJOR.MINOR.PATCH[TAG]"
44
commit_message = "Release {new_version}"
55
tag_message = "{new_version}"

dist/readthedocs-addons.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/readthedocs-addons.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

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

src/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { EVENT_READTHEDOCS_URL_CHANGED } from "./events";
2323
export const ADDONS_API_VERSION = "1";
2424
export const ADDONS_API_ENDPOINT = "/_/addons/";
2525
// This is managed by bumpver automatically
26-
export const CLIENT_VERSION = "0.26.0";
26+
export const CLIENT_VERSION = "0.27.0";
2727

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

0 commit comments

Comments
 (0)