Skip to content

Commit 3251e81

Browse files
authored
chore: Version Bump to 1.4.0 (#99)
Signed-off-by: Jacob Fuss <[email protected]> Co-authored-by: Jacob Fuss <[email protected]>
1 parent f7ac6df commit 3251e81

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

Makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.PHONY: version-bump
2+
3+
version-bump:
4+
@if [ -z "$(VERSION)" ]; then \
5+
echo "Error: VERSION parameter is required. Usage: make version-bump VERSION=1.4.0"; \
6+
exit 1; \
7+
fi
8+
sed -i '' 's/^__version__ = ".*"$$/__version__ = "$(VERSION)"/' kitops/__init__.py
9+
sed -i '' 's/^version = ".*"$$/version = "$(VERSION)"/' pyproject.toml
10+
@echo "Version bumped to $(VERSION)"

kitops/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
"""
2020
Manage KitOps' ModelKits
2121
"""
22-
__version__ = "1.3.0"
22+
__version__ = "1.4.0"
2323
__all__ = ["kitfile", "reference", "user", "manager"]

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ build-backend = "poetry.core.masonry.api"
44

55
[project]
66
name = "kitops"
7-
version = "1.3.0"
7+
version = "1.4.0"
88
authors = [
9-
{ name="Brett Hodges", email="brett@jozu.com" },
9+
{ name="Jacob Fuss", email="jacob@jozu.com" },
1010
]
1111
description = "A package for managing KitOps ModelKits and Kitfiles"
1212
readme = {file = "README.md", content-type = "text/markdown"}

0 commit comments

Comments
 (0)