Skip to content

Commit

Permalink
Release 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
humitos committed Nov 30, 2023
1 parent bc24836 commit 3e7722b
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ CHANGELOG
.. The text for the changelog is manually generated for now.
Version v0.9.1
--------------

:date: November 30, 2023

* Fix issue with ``IS_TESTING`` variable that made the production javascript to
hit ``localhost:`` for the JSON response instead of production API.

Version v0.9.0
--------------

Expand Down
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.9.0"
current_version = "0.9.1"
version_pattern = "MAJOR.MINOR.PATCH[TAG]"
commit_message = "Release {new_version}"
tag_message = "{new_version}"
Expand Down
4 changes: 2 additions & 2 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.9.0",
"version": "0.9.1",
"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/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { default as objectPath } from "object-path";
export const ADDONS_API_VERSION = "0";
export const ADDONS_API_ENDPOINT = "/_/addons/";
// This is managed by bumpver automatically
export const CLIENT_VERSION = "0.9.0";
export const CLIENT_VERSION = "0.9.1";

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

0 comments on commit 3e7722b

Please sign in to comment.