Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bumpver.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpver]
current_version = "0.30.0"
current_version = "0.31.0"
version_pattern = "MAJOR.MINOR.PATCH[TAG]"
commit_message = "Release {new_version}"
tag_message = "{new_version}"
Expand Down
16 changes: 8 additions & 8 deletions dist/readthedocs-addons.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/readthedocs-addons.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@readthedocs/addons",
"version": "0.30.0",
"version": "0.31.0",
"description": "Read the Docs Addons to embed into documentation pages",
"main": "dist/readthedocs-addons.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/readthedocs-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export function getReadTheDocsConfig(sendUrlParam) {
return response.json();
})
.then((data) => {
return dispatchEvent(
dispatchEvent(
EVENT_READTHEDOCS_ADDONS_INTERNAL_DATA_READY,
document,
new ReadTheDocsEventData(data),
Expand Down
2 changes: 1 addition & 1 deletion src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { EVENT_READTHEDOCS_URL_CHANGED } from "./events";
export const ADDONS_API_VERSION = "1";
export const ADDONS_API_ENDPOINT = "/_/addons/";
// This is managed by bumpver automatically
export const CLIENT_VERSION = "0.30.0";
export const CLIENT_VERSION = "0.31.0";

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