Skip to content

Commit 0129151

Browse files
committed
prepare for release
1 parent 09178c5 commit 0129151

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

RELEASE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ pip install wheel
1212
- To release a new version of pyvipr on PyPI:
1313

1414
* Update version_info and frontend_version in _version.py (set release version, remove 'dev')
15+
* Update frontend version in js/package.json and pyvipr/staticlab/package.json
1516
* git add the _version.py file and git commit
1617
* Build the distribution (both )
1718

js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pyvipr",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "Dynamic and static visualizations of systems biology models written in SBML, BNGL, and PySB",
55
"author": "Oscar Ortega",
66
"main": "lib/index.js",

pyvipr/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
version_info = (1, 0, 5, 'final', 0)
1+
version_info = (1, 0, 6, 'final', 0)
22

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

55
__version__ = '%s.%s.%s%s'%(version_info[0], version_info[1], version_info[2],
66
'' if version_info[3]=='final' else _specifier_[version_info[3]]+str(version_info[4]))
7-
__frontend_version__ = '^1.0.4'
7+
__frontend_version__ = '^1.0.5'

pyvipr/staticlab/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pyvipr",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "Dynamic and static visualizations of systems biology models written in SBML, BNGL, and PySB",
55
"author": "Oscar Ortega",
66
"main": "lib/index.js",

0 commit comments

Comments
 (0)