Skip to content

Commit

Permalink
Update version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ksugar committed Sep 28, 2021
1 parent 874e1f9 commit 214a14e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion elephant-core/elephant/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
# ==============================================================================
"""Version definition."""

__version__ = '0.2.0-dev'
__version__ = '0.2.0'
18 changes: 15 additions & 3 deletions elephant_server.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,27 @@
"# Download ELEPHANT server"
]
},
{
"cell_type": "code",
"metadata": {
"id": "CpJPKG_ATv39"
},
"source": [
"%env ELEPHANT_SERVER_VERSION = v0.2.0"
],
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"metadata": {
"id": "X0Hdn56eMre2"
},
"source": [
"!wget https://github.com/elephant-track/elephant-server/archive/refs/heads/dev.zip\n",
"!unzip -qq dev.zip && rm dev.zip\n",
"!mv elephant-server-dev /opt/elephant"
"!wget -q -c -nc https://github.com/elephant-track/elephant-server/archive/refs/tags/$ELEPHANT_SERVER_VERSION.tar.gz\n",
"!mkdir -p /opt/elephant\n",
"!tar -zxf $ELEPHANT_SERVER_VERSION.tar.gz --strip-components=1 -C /opt/elephant\n",
"!rm $ELEPHANT_SERVER_VERSION.tar.gz"
],
"execution_count": null,
"outputs": []
Expand Down

0 comments on commit 214a14e

Please sign in to comment.