diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index caf1bb5..14c062e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ on: workflow_dispatch: env: - PHASE_VERSION: v0.2.1-3 + PHASE_VERSION: v0.3.0 PHASE_REPO: i3drobotics/phase jobs: diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index c9f2dc1..c4215fd 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -6,7 +6,7 @@ on: types: [ opened, synchronize, reopened ] env: - PHASE_VERSION: v0.2.1-3 + PHASE_VERSION: v0.3.0 PHASE_REPO: i3drobotics/phase jobs: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a929b80..0157e05 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ on: - prerelease env: - PHASE_VERSION: v0.2.1-3 + PHASE_VERSION: v0.3.0 PHASE_REPO: i3drobotics/phase jobs: diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index 8d21cc9..b1a1573 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -1,6 +1,6 @@ FROM gitpod/workspace-full -RUN curl --output phase.deb -L https://github.com/i3drobotics/phase/releases/download/v0.2.1-3/phase-v0.2.1-3-ubuntu-20.04-x86_64.deb && \ +RUN curl --output phase.deb -L https://github.com/i3drobotics/phase/releases/download/v0.3.0/phase-v0.3.0-ubuntu-20.04-x86_64.deb && \ sudo apt update && \ sudo apt install -y ./phase.deb && \ sudo rm -rf ./phase.deb && \ diff --git a/README.md b/README.md index 81f4b7e..158294f 100644 --- a/README.md +++ b/README.md @@ -30,14 +30,14 @@ pip install ./phase-X.X.X-cpXXX-cpXXX-linux_x86_64.whl ## Dependencies Phase library is required to be installed for use in the build process. ### Linux -Download debian package from [v0.2.1-3 release](https://github.com/i3drobotics/phase/releases/tag/v0.2.1-3). +Download debian package from [v0.3.0 release](https://github.com/i3drobotics/phase/releases/tag/v0.3.0). Install debian package using apt package manager: ``` sudo apt install -f ./phase_vx.x.x-amd64.deb ``` This should install to `/opt/i3dr/phase` ### Windows -Download Windows installer from the [v0.2.1-3 release](https://github.com/i3drobotics/phase/releases/tag/v0.2.1-3). +Download Windows installer from the [v0.3.0 release](https://github.com/i3drobotics/phase/releases/tag/v0.3.0). Install using the installer GUI, this should install to `C:\Program Files\i3DR\Phase` The following libraries are used to build pyPhase: diff --git a/docs/README_developer.md b/docs/README_developer.md index 007634c..889b18e 100644 --- a/docs/README_developer.md +++ b/docs/README_developer.md @@ -28,14 +28,14 @@ pip install ./phase-X.X.X-cpXXX-cpXXX-linux_x86_64.whl ## Dependencies Phase library is required to be installed for use in the build process. ### Linux -Download debian package from [v0.2.1-3 release](https://github.com/i3drobotics/phase/releases/tag/v0.2.1-3). +Download debian package from [v0.3.0 release](https://github.com/i3drobotics/phase/releases/tag/v0.3.0). Install debian package using apt package manager: ``` sudo apt install -f ./phase_vx.x.x-amd64.deb ``` This should install to `/opt/i3dr/phase` ### Windows -Download Windows installer from the [v0.2.1-3 release](https://github.com/i3drobotics/phase/releases/tag/v0.2.1-3). +Download Windows installer from the [v0.3.0 release](https://github.com/i3drobotics/phase/releases/tag/v0.3.0). Install using the installer GUI, this should install to `C:\Program Files\i3DR\Phase` The following libraries are used to build pyPhase: diff --git a/release.md b/release.md index e2eb9bb..6745340 100644 --- a/release.md +++ b/release.md @@ -28,7 +28,7 @@ Documentation is available [here](https://i3drobotics.github.io/pyphase/) ### Improvements - Changed the suggested way to import pyPhase [#63](https://github.com/i3drobotics/pyphase/pull/63) - Added ability to list available cameras using `phase.stereocamera.availableDevices` [#67](https://github.com/i3drobotics/pyphase/pull/67) - - Updated to phase version v0.2.1-3 [#70](https://github.com/i3drobotics/pyphase/pull/70) + - Updated to phase version v0.3.0 [#70](https://github.com/i3drobotics/pyphase/pull/70) ### Bug fixes - Fix docstrings missing parameter names [#66](https://github.com/i3drobotics/pyphase/pull/66) diff --git a/src/package/phase/__init__.py b/src/package/phase/__init__.py index 09594ab..f68019c 100644 --- a/src/package/phase/__init__.py +++ b/src/package/phase/__init__.py @@ -51,7 +51,7 @@ def check_phase_version(phase_version): # Define phase version -phase_version = "0.2.1" +phase_version = "0.3.0" # Check valid phase import import_phase()