Skip to content

Commit 86ab371

Browse files
committed
Release 0.9.0
1 parent ff8baf2 commit 86ab371

File tree

6 files changed

+19
-6
lines changed

6 files changed

+19
-6
lines changed

CHANGELOG.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ CHANGELOG
44
.. The text for the changelog is manually generated for now.
55
66
7+
Version v0.9.0
8+
--------------
9+
10+
:date: November 28, 2023
11+
12+
* Customize flyout font size via CSS variables
13+
* NPM packages updated to their latest versions
14+
* Use JSON schema to validate data from the API
15+
* Increase test suite for all the addons.
16+
Test running inside the browser, checks for HTML and DOM changes,
17+
mocked requests and more!
18+
* Read ``version_schema`` field instead ``single_version`` from addons API response.
19+
720
Version v0.8.0
821
--------------
922

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.8.0"
2+
current_version = "0.9.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: 2 additions & 2 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 & 1 deletion
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.8.0",
3+
"version": "0.9.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
@@ -3,7 +3,7 @@ import { default as objectPath } from "object-path";
33
export const ADDONS_API_VERSION = "0";
44
export const ADDONS_API_ENDPOINT = "/_/addons/";
55
// This is managed by bumpver automatically
6-
export const CLIENT_VERSION = "0.8.0";
6+
export const CLIENT_VERSION = "0.9.0";
77

88
export function isReadTheDocsEmbedPresent() {
99
const urls = [

0 commit comments

Comments
 (0)