From 8b5236447cebaa33f8ac6986b69d86f755df2b23 Mon Sep 17 00:00:00 2001 From: Minki Kim <68267535+mingi3314@users.noreply.github.com> Date: Sun, 19 May 2024 18:09:40 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20release=20version=20backend@0.10?= =?UTF-8?q?.5=20(#132)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### TL;DR This pull request prepares for the release of backend version 0.10.5. ### What changed? The version number in the backend `pyproject.toml` file was incremented to `0.10.5` from `0.10.4`. ### How to test? After merging this PR, tag the commit with `v0.10.5`. Then, verify the new version is properly reflected in the system. ### Why make this change? A new version is being released, so the project version number needs to be incremented. --- --- backend/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 3781ca6..d89b41d 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyrb" -version = "0.10.4" +version = "0.10.5" description = "Python Rebalancer" authors = ["Minki Kim "] readme = "README.md"