diff --git a/README.md b/README.md index 86ee91323..d5626e5bc 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Skyplane currently only supports MacOS and Linux. For Windows, first [install Li # Getting started ## Installation -We recommend installation from PyPi: `pip install skyplane-nightly` +We recommend installation from PyPi: `pip install skyplane` *Installation on M1 Mac*: If you are using an M1 Mac with the arm64 architecture, you will need to install Skyplane as follows `GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=1 GRPC_PYTHON_BUILD_SYSTEM_ZLIB=1 pip install skyplane` diff --git a/docs/conf.py b/docs/conf.py index a5383a9a1..d3c5f5b06 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,7 +19,7 @@ author = "The Skyplane authors" release = "0.1" -version = "0.1.2" +version = "0.1.3" # -- General configuration diff --git a/pyproject.toml b/pyproject.toml index dd24e0c5a..0a2d0fc6a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "skyplane" packages = [{ include = "skyplane" }] -version = "0.1.2" +version = "0.1.3" description = "Skyplane efficiently transports data between cloud regions and providers." authors = ["Skyplane authors "] license = "Apache-2.0" diff --git a/skyplane/__init__.py b/skyplane/__init__.py index d8376450f..fd64eccd8 100644 --- a/skyplane/__init__.py +++ b/skyplane/__init__.py @@ -5,7 +5,7 @@ from skyplane.gateway_version import gateway_version # version -__version__ = "0.1.2" +__version__ = "0.1.3" # paths skyplane_root = Path(__file__).parent.parent