Skip to content

Commit 606d2bd

Browse files
authored
RELEASE: v0.1.0 (#44)
1 parent 4d1a60c commit 606d2bd

3 files changed

Lines changed: 15 additions & 5 deletions

File tree

.github/workflows/integration.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ jobs:
3535
steps:
3636
- name: Checkout source
3737
uses: actions/checkout@v2
38-
- name: Set up Python 3.7
38+
- name: Set up Python 3.8
3939
uses: actions/setup-python@v1
4040
with:
41-
python-version: 3.7
41+
python-version: "3.8"
4242
- name: Build package
4343
run: |
44-
pip install wheel
45-
python setup.py sdist bdist_wheel
44+
pip install build
45+
python -m build
4646
- name: Publish
4747
uses: pypa/gh-action-pypi-publish@v1.1.0
4848
with:

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Changelog
2+
3+
## v0.1.0
4+
5+
([full changelog](https://github.com/executablebooks/sphinx-thebe/compare/v0.0.10...4d1a60c5126ce633b1a36de43b4990b2f4d08730))
6+
7+
**Lazy load thebe javascript** [#41](https://github.com/executablebooks/sphinx-thebe/pull/41) ([@choldgraf](https://github.com/choldgraf))
8+
9+
`thebe` will now "lazily load" its javascript only when a bootstrap button is pressed, rather than loading the Javascript on each page.
10+
This saves on bandwidth and pageload speed, since Thebe is generally _not_ used on a page even if it _could_ be used.

sphinx_thebe/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from docutils import nodes
1010
from sphinx.util import logging
1111

12-
__version__ = "0.0.10"
12+
__version__ = "0.1.0"
1313

1414
logger = logging.getLogger(__name__)
1515

0 commit comments

Comments
 (0)