Skip to content

Commit

Permalink
bump version to 0.3.2 dev
Browse files Browse the repository at this point in the history
  • Loading branch information
munkm committed Jan 4, 2019
1 parent ea9b303 commit 5336f77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@data-exp-lab/yt-widgets",
"version": "0.3.1",
"version": "0.3.2",
"description": "A Custom Jupyter Widget Library for Interactive Visualization with yt",
"author": "Data Exploration Lab",
"contributors": [
Expand Down
4 changes: 2 additions & 2 deletions widgyts/_version.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
version_info = (0, 3, 1, 'final', 0)
version_info = (0, 3, 2, 'dev', 0)

_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': '',
'dev': 'dev'}

__version__ = '%s.%s.%s%s'%(version_info[0], version_info[1], version_info[2],
'' if version_info[3]=='final' else _specifier_[version_info[3]]+str(version_info[4]))

EXTENSION_VERSION='~0.3.1'
EXTENSION_VERSION='~0.3.2'

0 comments on commit 5336f77

Please sign in to comment.