Skip to content

Commit

Permalink
Merge branch 'main' of github.com:jupyter-naas/naas
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Mar 17, 2021
2 parents b9a7900 + 1a23cce commit 79468fb
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .cz.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$major.$minor.$patch$prerelease"
version = "1.5.8"
version = "1.5.9"
version_files = [
"naas/__init__.py",
"naas/runner/runner.py",
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.5.9 (2021-03-17)

### Fix

- scheduler path

## 1.5.8 (2021-03-17)

### Fix
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM jupyternaas/singleuser:latest
# Build-time metadata as defined at http://label-schema.org
ARG BUILD_DATE
ARG VCS_REF
ENV VERSION 1.5.8
ENV VERSION 1.5.9
ENV JUPYTER_ENABLE_LAB 'yes'

ENV NB_UMASK=022
Expand Down
2 changes: 1 addition & 1 deletion naas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import requests
import os

__version__ = "1.5.8"
__version__ = "1.5.9"
__github_repo = "jupyter-naas/naas"
__doc_url = "https://naas.gitbook.io/naas/"
__canny_js = '<script>!function(w,d,i,s){function l(){if(!d.getElementById(i)){var f=d.getElementsByTagName(s)[0],e=d.createElement(s);e.type="text/javascript",e.async=!0,e.src="https://canny.io/sdk.js",f.parentNode.insertBefore(e,f)}}if("function"!=typeof w.Canny){var c=function(){c.q.push(arguments)};c.q=[],w.Canny=c,"complete"===d.readyState?l():w.attachEvent?w.attachEvent("onload",l):w.addEventListener("load",l,!1)}}(window,document,"canny-jssdk","script");</script>' # noqa: E501
Expand Down
2 changes: 1 addition & 1 deletion naas/runner/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
asyncio.set_event_loop_policy(None)
nest_asyncio.apply()

__version__ = "1.5.8"
__version__ = "1.5.9"


class Runner:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
]
setup(
name="naas",
version="1.5.8",
version="1.5.9",
scripts=["scripts/naas"],
author="Martin Donadieu",
author_email="martindonadieu@gmail.com",
Expand Down

0 comments on commit 79468fb

Please sign in to comment.