From 8db42b3bd0f66a89d12a73b5fc658e527c1229fd Mon Sep 17 00:00:00 2001 From: Juan Bustamante Date: Mon, 20 Feb 2023 17:25:15 -0500 Subject: [PATCH 1/2] WIP - initial version Signed-off-by: Juan Bustamante --- VERSIONING.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 VERSIONING.md diff --git a/VERSIONING.md b/VERSIONING.md new file mode 100644 index 000000000..a45a07b93 --- /dev/null +++ b/VERSIONING.md @@ -0,0 +1,9 @@ +# Kpack Release Versioning + +Reference: [Semantic Versioning](http://semver.org) + +Legend: + +- **X.Y.Z** refers to the version (git tag) of kpack that is released. + This versions all the Custom Resource Definition (CRDs): builds, builders, stacks, stores, secrets, images, etc (**X** is the + major version, **Y** is the minor version, and **Z** is the patch version.) From 2540d74c79cfabcf4e63aa2f343f9c27f74b34c4 Mon Sep 17 00:00:00 2001 From: Juan Bustamante Date: Tue, 21 Feb 2023 10:46:00 -0500 Subject: [PATCH 2/2] re-writing the version defintion Signed-off-by: Juan Bustamante --- VERSIONING.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/VERSIONING.md b/VERSIONING.md index a45a07b93..0b122a069 100644 --- a/VERSIONING.md +++ b/VERSIONING.md @@ -1,9 +1,12 @@ # Kpack Release Versioning -Reference: [Semantic Versioning](http://semver.org) +Reference: + - [Semantic Versioning](http://semver.org) + - [Kubernetes Resource Versioning](https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definition-versioning/) Legend: -- **X.Y.Z** refers to the version (git tag) of kpack that is released. - This versions all the Custom Resource Definition (CRDs): builds, builders, stacks, stores, secrets, images, etc (**X** is the - major version, **Y** is the minor version, and **Z** is the patch version.) +- kpack follows semantic versioning rules, where **X.Y.Z** refers to the version (git tag) of kpack that is released. + (**X** is the major version, **Y** is the minor version, and **Z** is the patch version.) + +- kpack Custom Resource Definition (CRDs) follows the kubernetes resources versioning