Skip to content

Commit

Permalink
Merge pull request #75 from timkpaine/033
Browse files Browse the repository at this point in the history
Bump version: 0.3.2 → 0.3.3
  • Loading branch information
timkpaine committed Apr 7, 2022
2 parents 3088614 + eb0713f commit 45df95f
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 9 deletions.
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ include setup.cfg
include pyproject.toml
include Makefile

recursive-include ipydagred3/extension *.*
recursive-include ipydagred3/labextension *.*
recursive-include ipydagred3/nbextension *.*

# grab js
graft js
prune js/coverage
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ checks: ## run lint and other checks
check-manifest

build: clean ## build python/javascript
python -m build .
python -m build . -s -w

develop: ## install to site-packages in editable mode
python -m pip install --upgrade build pip setuptools twine wheel
Expand Down Expand Up @@ -60,6 +60,7 @@ clean: ## clean the repository
find . -name ".ipynb_checkpoints" | xargs rm -rf
rm -rf .coverage coverage *.xml build dist *.egg-info lib node_modules .pytest_cache *.egg-info
rm -rf ipydagred3/labextension ipydagred3/nbextension/static
cd js && yarn clean
# make -C ./docs clean
git clean -fd

Expand Down
2 changes: 1 addition & 1 deletion ipydagred3/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.2"
__version__ = "0.3.3"
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipydagred3",
"version": "0.3.2",
"version": "0.3.3",
"description": "A Custom Jupyter Widget Library",
"keywords": [
"jupyter",
Expand Down
10 changes: 5 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
[bumpversion]
current_version = 0.3.3
commit = True
tag = False

[bdist_wheel]
universal = 1

Expand All @@ -9,11 +14,6 @@ long_description_content_type = text/markdown
ignore = E203, W503
max-line-length = 200

[bumpversion]
current_version = 0.3.2
commit = True
tag = False

[bumpversion:file:ipydagred3/_version.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@

setup(
name=name,
version="0.3.2",
version="0.3.3",
description="ipywidgets wrapper around dagre-d3",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 45df95f

Please sign in to comment.