Prepare release 0.2.0 (#207)

* Update version from 0.1.0 to 0.2.0
This commit is contained in:
Christian Kadner 2020-07-01 11:12:17 -07:00 committed by GitHub
parent fcd4308297
commit 7580faa19f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -28,7 +28,7 @@ for [Tekton](https://github.com/tektoncd/pipeline).
## Project Prerequisites
- Python: `3.7.5`
- Python: `3.5.3` or later
- Tekton: [`0.13.0`](https://github.com/tektoncd/pipeline/releases/tag/v0.13.0)
- Tekton CLI: [`0.10.0`](https://github.com/tektoncd/cli/releases/tag/v0.10.0)
- Kubeflow Pipelines: [KFP with Tekton backend](/tekton_kfp_guide.md)

View File

@ -33,7 +33,7 @@ the [SDK README](/sdk/README.md)
## Development Prerequisites
1. [`Python`](https://www.python.org/downloads/): version `3.5` or later
1. [`Python`](https://www.python.org/downloads/): version `3.5.3` or later (new code must maintain compatibility with `3.5`)
2. [`Kubernetes` Cluster](https://v1-15.docs.kubernetes.io/docs/setup/): version `1.15` ([required by Kubeflow](https://www.kubeflow.org/docs/started/k8s/overview/) and Tekton 0.11)
3. [`kubectl` CLI](https://kubernetes.io/docs/tasks/tools/install-kubectl/): required to deploy Tekton pipelines to Kubernetes cluster
4. [`Tekton` Deployment](https://github.com/tektoncd/pipeline/releases/tag/v0.13.0/): version `0.13.0` (or greater to support Tekton API version `v1beta1`), required for end-to-end testing

View File

@ -12,6 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
__version__ = '0.1.0'
__version__ = '0.2.0'
from ._client import TektonClient # noqa F401

View File

@ -20,14 +20,14 @@
#
# To create a distribution for PyPi run:
#
# $ export KFP_TEKTON_VERSION=0.1.2
# $ export KFP_TEKTON_VERSION=0.2.0-rc1
# $ python3 setup.py sdist
# $ twine check dist/kfp-tekton-${KFP_TEKTON_VERSION}.tar.gz
# $ twine upload --repository pypi dist/kfp-tekton-${KFP_TEKTON_VERSION}.tar.gz
#
# ... or:
#
# $ make distribution KFP_TEKTON_VERSION=0.1.2
# $ make distribution KFP_TEKTON_VERSION=0.2.0-rc1
#
# =============================================================================