Skip to content

Commit

Permalink
Release 0.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ericholscher committed Jan 8, 2025
1 parent b737c51 commit 0eed81e
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 8 deletions.
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.24.0
---------------

:date: Jan 8, 2025

* Don't show the latest notification if it's the default version (:pr:`480`)
* EthicalAd: better ad position for Docsify (:pr:`470`)
* Packages: updated via ncu -u (:pr:`479`)

Version v0.23.2
---------------

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.23.2"
current_version = "0.24.0"
version_pattern = "MAJOR.MINOR.PATCH[TAG]"
commit_message = "Release {new_version}"
tag_message = "{new_version}"
Expand Down
6 changes: 3 additions & 3 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.

1 change: 1 addition & 0 deletions docs/changelog.rst
9 changes: 8 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
import os

project = 'Read the Docs Addons'
extensions = []
extensions = [
'sphinx.ext.extlinks',
]
html_theme = 'furo'

html_context = {}

# Define the extlinks configuration
extlinks = {
'pr': ('https://github.com/readthedocs/addons/pull/%s', 'PR #%s'),
}

# NOTE: this should be done automatically by the theme,
# but for some reason it's not working as I expect.
# https://github.com/pradyunsg/furo/blob/0439e84b3c2c5b168f22ea2e93c867fd37911dfa/docs/conf.py#L134
Expand Down
5 changes: 5 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ Contents
releasing
testing

.. toctree::
:maxdepth: 1

Changelog <changelog>

.. raw:: html

<style>
Expand Down
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.23.2",
"version": "0.24.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.23.2";
export const CLIENT_VERSION = "0.24.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 0eed81e

Please sign in to comment.