infra: bump to dev version [generated]

Signed-off-by: aarnphm-ec2-dev <29749331+aarnphm@users.noreply.github.com>
This commit is contained in:
aarnphm-ec2-dev
2023-05-26 23:17:41 +00:00
parent 26df699a03
commit 150ea33d2d
2 changed files with 7 additions and 2 deletions

View File

@@ -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"

View File

@@ -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