Skip to content

Commit

Permalink
bumped version numbers to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aschonfeld committed May 9, 2023
1 parent 174d75c commit 94b950a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
. ci-5x/bin/activate
pip install ipython==5.2.2
cd ipython-extension && pip install .
pip install black==23.3.0 mypy pytest mock
pip install black==22.8.0 mypy pytest mock
python -c 'import IPython; print(IPython.__version__)'
[ "$(python -c 'import IPython; print(IPython.__version__)')" == "5.2.2" ]
# save dependency cache
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
virtualenv ci
. ci/bin/activate
cd ipython-extension && pip install .
pip install black==23.3.0 mypy pytest mock types-setuptools
pip install black==22.8.0 mypy pytest mock types-setuptools
# save dependency cache
- save_cache:
name: Save pip cache
Expand Down
5 changes: 5 additions & 0 deletions autoplot-display/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.4.0
=====

- Compatibility bugfixes for D-Tale 2.15.2

0.3.0
=====

Expand Down
2 changes: 1 addition & 1 deletion autoplot-display/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mangroup/jupyterlab-autoplot-display",
"version": "0.3.0",
"version": "0.4.0",
"description": "The JupyterLab component for the Autoplot JupyterLab extension.",
"license": "BSD-3-Clause",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion autoplot-display/src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/
export namespace VERSION {
export const title = 'Autoplot Display';
export const version = '0.3.0';
export const version = '0.4.0';
export const module = '@jupyter-widgets/autoplot-display';

export const modelName = 'AutoplotDisplayModel';
Expand Down
2 changes: 1 addition & 1 deletion ipython-extension/autoplot/extensions/autoplot_display.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

# these values must mach those in autoplot-display/version.ts
EXTENSION_TITLE = "Autoplot Display"
EXTENSION_VERSION = "0.3.0"
EXTENSION_VERSION = "0.4.0"
MODULE_NAME = "@jupyter-widgets/autoplot-display"

MODEL_NAME = "AutoplotDisplayModel"
Expand Down
2 changes: 1 addition & 1 deletion ipython-extension/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def get_long_description():

setup(
name="jupyterlab-autoplot",
version="0.3.0",
version="0.4.0",
author="Man Alpha Technology",
author_email="[email protected]",
license="BSD 3-Clause",
Expand Down

0 comments on commit 94b950a

Please sign in to comment.