Skip to content

Commit

Permalink
Prepare release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danirus committed Nov 25, 2024
1 parent 7da7ff6 commit 03577d4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
6 changes: 5 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Change Log
# Release Notes

## [0.2.0] - 2024-11-25

- Remove unnecessary `console.log`.

## [0.1.4] - 2024-11-21

Expand Down
1 change: 0 additions & 1 deletion js/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ export class SphinxColorschemeImageHandler {
) {
const parent = img.parentElement;
parent.href = img.getAttribute(data_att);
console.log("the new anchor's href:", parent.href);
}
}
}
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": "sphinx-colorschemed-images",
"version": "0.1.4",
"version": "0.2.0",
"description": "Include color-scheme aware images in Sphinx projects.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion sphinx_colorschemed_images/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from .extension import copy_colorschemed_images, extension_builder_inited

__version__ = "0.1.4"
__version__ = "0.2.0"


def setup(app) -> dict:
Expand Down

0 comments on commit 03577d4

Please sign in to comment.