We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7d8646e + 09da6ed commit 37d403cCopy full SHA for 37d403c
2 files changed
Makefile
@@ -0,0 +1,15 @@
1
+CURRENT_VERSION := $(shell poetry version -s)
2
+SEMVERS := major minor patch
3
+LAST_TAG := $(shell git describe --tags --abbrev=0)
4
+
5
+tag_version:
6
+ git commit -m "release: bump to ${CURRENT_VERSION}" pyproject.toml
7
+ git tag ${CURRENT_VERSION}
8
9
+$(SEMVERS):
10
+ poetry version $@
11
+ $(MAKE) tag_version
12
13
+release:
14
+ git push origin tag ${LAST_TAG}
15
+ gh release create --verify-tag ${LAST_TAG} --notes-from-tag
pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "boagent"
-version = "0.1.0"
+version = "0.1.1"
description = "Local API to collect and compute data on used device and running applications to give insight on their environmental impacts."
authors = ["Boavizta <open-source@boavizta.org>"]
license = "Apache-2.0"
0 commit comments