Skip to content

Commit

Permalink
Bump version to 0.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Łukasz Walkiewicz committed Aug 27, 2019
1 parent 924cd02 commit 8012862
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion neptune_notebooks/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def get_config():
# _version.py
cfg = VersioneerConfig()
cfg.VCS = "git"
cfg.style = "pep440"
cfg.style = "git-describe"
cfg.tag_prefix = ""
cfg.parentdir_prefix = ""
cfg.versionfile_source = "neptune_notebooks/_version.py"
Expand Down
2 changes: 1 addition & 1 deletion packages/labextension/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 packages/labextension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "neptune-notebooks",
"version": "0.0.9",
"version": "0.0.10",
"description": "A JupyterLab extension for Neptune",
"keywords": [
"jupyter",
Expand Down
2 changes: 1 addition & 1 deletion packages/nbextension/neptune-notebook.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ define([
var uploadTimer = new Timer();
var configTimer = new Timer();

var CURRENT_VERSION = '0.0.7';
var CURRENT_VERSION = '0.0.10';

return {
'load_jupyter_extension': loadJupyterExtensions,
Expand Down
3 changes: 2 additions & 1 deletion setupbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,8 @@ class SetVersion(BaseCommand):
def run():
log.info("Set nbextension version = {} in {}/neptune-notebook.js".format(version, path))
run(["sed",
"-iE",
"-i",
"-E",
"s/var CURRENT_VERSION = '.*';/var CURRENT_VERSION = '{}';/".format(version),
"neptune-notebook.js"],
cwd=path)
Expand Down

0 comments on commit 8012862

Please sign in to comment.