Skip to content

Commit

Permalink
Release 0.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
humitos committed Nov 26, 2024
1 parent 1cd1002 commit 09d0654
Show file tree
Hide file tree
Showing 7 changed files with 59 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ repos:
hooks:
- id: trailing-whitespace
exclude: "^(dist/|public/|tests/__snapshots__/).*$"
- id: check-added-large-files
# Our .js.map file takes ~2Mb now.
# - id: check-added-large-files
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-merge-conflict
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ CHANGELOG

.. The text for the changelog is manually generated for now.
Version v0.23.0
---------------

:date: Nov 26, 2024

* Enable DocDiff via a query string (``readthedocs-diff=true``)
* Don't show notification on default version
* Improvements to Links Preview (using a default CSS selector and heuristic to detect the documentation tool)

Version v0.22.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.22.0"
current_version = "0.23.0"
version_pattern = "MAJOR.MINOR.PATCH[TAG]"
commit_message = "Release {new_version}"
tag_message = "{new_version}"
Expand Down
44 changes: 44 additions & 0 deletions dist/readthedocs-addons.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions 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.22.0",
"version": "0.23.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/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
export const ADDONS_API_VERSION = "1";
export const ADDONS_API_ENDPOINT = "/_/addons/";
// This is managed by bumpver automatically
export const CLIENT_VERSION = "0.22.0";
export const CLIENT_VERSION = "0.23.0";

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

0 comments on commit 09d0654

Please sign in to comment.