Skip to content

Commit

Permalink
Bump to 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-rind committed Sep 9, 2023
1 parent b27a477 commit 97420bc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions dev-logbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ Deploy to pypi (cp. <https://towardsdatascience.com/how-to-build-your-first-pyth
pip install twine hatch
# python setup.py sdist bdist_wheel
hatch build
twine check dist/sonivis_lens_widget-0.1.2.dev0*
twine upload dist/sonivis_lens_widget-0.1.2.dev0*
twine check dist/soniscope_jupyter-0.1.5*
twine upload dist/soniscope_jupyter-0.1.5*
```

## Step 12: feature requests
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "soniscope-jupyter",
"version": "0.1.4",
"version": "0.1.5",
"description": "jupyter notebook widget with a scatter plot and an interactive lens to enable interactive sonification",
"keywords": [
"jupyter",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies = [
"numpy>=1.21.0",
"pandas>=1.3.0",
]
version = "0.1.4.dev0"
version = "0.1.5"

[project.optional-dependencies]
docs = [
Expand Down Expand Up @@ -99,7 +99,7 @@ field = [
]

[tool.tbump.version]
current = "0.1.4.dev0"
current = "0.1.5"
regex = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)((?P<channel>a|b|rc|.dev)(?P<release>\\d+))?"

[tool.tbump.git]
Expand Down
2 changes: 1 addition & 1 deletion soniscope_jupyter/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
# Copyright (c) Alexander Rind & the SoniVis team.
# Distributed under the terms of the MIT License (see LICENSE.txt).

version_info = (0, 1, 4, 'dev')
version_info = (0, 1, 5)
__version__ = ".".join(map(str, version_info))

0 comments on commit 97420bc

Please sign in to comment.