diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/pull_request_template.md similarity index 100% rename from .github/PULL_REQUEST_TEMPLATE/pull_request_template.md rename to .github/pull_request_template.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 7442c97d..3addbc72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## 0.2.0 ### Added diff --git a/docs/index.md b/docs/index.md index 0aea8d91..9f843657 100644 --- a/docs/index.md +++ b/docs/index.md @@ -4,7 +4,7 @@ A Deep Learning Model Development Framework for Computer Vision -**Version : 0.1.0** +**Version : 0.2.0** --- @@ -102,7 +102,7 @@ Then, clone the repo and install the vortex packages. It's important to be noted ```console git clone https://github.com/nodefluxio/vortex.git cd vortex -git checkout v0.2.0-rc1 +git checkout v0.2.0 pip3 install 'src/runtime[all]' pip3 install 'src/development' ``` @@ -200,7 +200,7 @@ For example, if you want to install specific dependencies for `onnxruntime`, exe ```console git clone https://github.com/nodefluxio/vortex.git cd vortex -git checkout v0.2.0-rc1 +git checkout v0.2.0 pip3 install 'src/runtime[onnxruntime]' ``` diff --git a/src/development/vortex/development/version.py b/src/development/vortex/development/version.py index 399225bf..a9fdc5cf 100644 --- a/src/development/vortex/development/version.py +++ b/src/development/vortex/development/version.py @@ -1 +1 @@ -__version__ = '0.2.0-rc1' \ No newline at end of file +__version__ = '0.2.0' \ No newline at end of file diff --git a/src/runtime/vortex/runtime/version.py b/src/runtime/vortex/runtime/version.py index 541f859d..a9fdc5cf 100644 --- a/src/runtime/vortex/runtime/version.py +++ b/src/runtime/vortex/runtime/version.py @@ -1 +1 @@ -__version__ = '0.1.0' \ No newline at end of file +__version__ = '0.2.0' \ No newline at end of file