Skip to content

Commit

Permalink
bump up version number
Browse files Browse the repository at this point in the history
  • Loading branch information
fxia22 committed Dec 24, 2020
1 parent 4cf34dc commit 383264b
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docker/base/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
IMAGE=igibson/igibson

export DOCKER_BUILDKIT=1
docker build -t $IMAGE:v0.0.4 . \
&& docker tag $IMAGE:v0.0.4 $IMAGE:latest \
docker build -t $IMAGE:v1.0.1 . \
&& docker tag $IMAGE:v1.0.1 $IMAGE:latest \
&& echo BUILD SUCCESSFUL
4 changes: 2 additions & 2 deletions docker/headless-gui/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
IMAGE=igibson/igibson-gui

export DOCKER_BUILDKIT=1
docker build -t $IMAGE:v0.0.4 . \
&& docker tag $IMAGE:v0.0.4 $IMAGE:latest \
docker build -t $IMAGE:v1.0.1 . \
&& docker tag $IMAGE:v1.0.1 $IMAGE:latest \
&& echo BUILD SUCCESSFUL
2 changes: 1 addition & 1 deletion docker/pull-images.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

VERSION=0.0.4
VERSION=1.0.1

docker pull igibson/igibson:v$VERSION
docker pull igibson/igibson:latest
Expand Down
2 changes: 1 addition & 1 deletion docker/push-images.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

VERSION=0.0.4
VERSION=1.0.1

docker push igibson/igibson:v$VERSION
docker push igibson/igibson:latest
Expand Down
2 changes: 1 addition & 1 deletion gibson2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os
import logging

__version__ = "1.0.0"
__version__ = "1.0.1"

logging.getLogger().setLevel(logging.INFO)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def run(self):

setup(
name='gibson2',
version='1.0.0',
version='1.0.1',
author='Stanford University',
long_description_content_type="text/markdown",
long_description=long_description,
Expand Down

0 comments on commit 383264b

Please sign in to comment.