From 98db94e2e8f2f27e043b4754911771efad131470 Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Fri, 12 Dec 2025 13:49:27 -0600 Subject: [PATCH] version: Bump to 0.2.1 --- Cargo.lock | 2 +- Makefile | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 5ab96fe..48edc78 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -757,7 +757,7 @@ [[package]] name = "gitore" -version = "0.1.5" +version = "0.2.1" dependencies = [ "anyhow", "arc-swap", diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..be3aa49 100644 --- /dev/null +++ b/Makefile @@ -1,0 +1,10 @@ +VERSION = v$(shell cargo pkgid | cut -d'#' -f2) +CONTAINER = codeberg.org/kallisti5/gitore +ENGINE = podman + +default: + ${ENGINE} build --no-cache --tag ${CONTAINER}:${VERSION} . +enter: + ${ENGINE} run -it --entrypoint /bin/sh ${CONTAINER}:${VERSION} -l +push: + ${ENGINE} push ${CONTAINER}:${VERSION} -- gitore 0.2.3