Skip to content

Commit

Permalink
Release 0.24.3
Browse files Browse the repository at this point in the history
  • Loading branch information
danielfrg committed Sep 21, 2023
1 parent 6139468 commit 8dddac0
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 17 deletions.
7 changes: 0 additions & 7 deletions .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,6 @@
"tabWidth": 4,
"useTabs": false,
"overrides": [
{
"files": ["*.html"],
"options": {
"tabWidth": 2,
"printWidth": 500
}
},
{
"files": ["*.yml", "*.json"],
"options": {
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# mkdocs-jupyter Change Log

## 0.24.3

- Fix theme selection

## 0.24.1

- Fix TOC header links
Expand Down
13 changes: 6 additions & 7 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,22 @@

Requirements:

- hatch
- nodejs and npm
- Python and rye
- NodeJS and pnpm

Create Python env and activate it:

```shell
hatch env create
hatch shell
rye sync
```

## Dev cycle

To change the styles

- `cd js`
- `npm install`
- `npm run build` or `npm run dev` for continuous build
- `pnpm install`
- `pnpm run build` or `npm run dev` for continuous build

Python:

Expand Down Expand Up @@ -55,5 +54,5 @@ trying to not break the themes specific CSS.
To update the original styles:

- Install `jupyterlab` Python package
- Copy the nbconvert CSS to `js/src/jupyter-lab.scss`
- Copy the nbconvert CSS to `js/src/styles/`
- Look at the `CHANGE:` comments in that file and update accordingly
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
export VERSION=1.0.0

# Build
task js-build
task js:build
task build
task publish

Expand Down
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ tasks:

publish:
cmds:
- hatch publish
- rye publish

py:clean:
cmds:
Expand Down
2 changes: 1 addition & 1 deletion mkdocs_jupyter/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"__version__",
]

__version__ = '0.24.2'
__version__ = '0.24.3'

0 comments on commit 8dddac0

Please sign in to comment.