From 150ea33d2d6e57bdca5a017e2245f4ac8c4fde35 Mon Sep 17 00:00:00 2001 From: aarnphm-ec2-dev <29749331+aarnphm@users.noreply.github.com> Date: Fri, 26 May 2023 23:17:41 +0000 Subject: [PATCH] infra: bump to dev version [generated] Signed-off-by: aarnphm-ec2-dev <29749331+aarnphm@users.noreply.github.com> --- src/openllm/__about__.py | 2 +- tools/release | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/openllm/__about__.py b/src/openllm/__about__.py index f39556c6..4793c6d2 100644 --- a/src/openllm/__about__.py +++ b/src/openllm/__about__.py @@ -11,4 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.0.3" +__version__ = "0.0.4.dev0" diff --git a/tools/release b/tools/release index bf54be67..6cac7da6 100755 --- a/tools/release +++ b/tools/release @@ -13,7 +13,7 @@ echo "Bumping version ..." && hatch version micro NEW_VERSION=$(hatch version) -git add src/openllm/__about__.py && git commit -sm "infra: prepare for release ${NEW_VERSION}" +git add src/openllm/__about__.py && git commit -sm "infra: prepare for release ${NEW_VERSION} [generated]" git push origin main echo "Building artifacts for releasing..." && hatch build @@ -21,3 +21,8 @@ echo "Building artifacts for releasing..." && hatch build echo "Releasing version ${NEW_VERSION}" && hatch release echo "Finish releasing version ${NEW_VERSION}" + +echo "Bumping version to dev" && hatch version dev + +git add src/openllm/__about__.py && git commit -sm "infra: bump to dev version of ${NEW_VERSION} [generated]" +git push origin main