From 55ff44ef759e74b2a0b14d87be1013063edc70e5 Mon Sep 17 00:00:00 2001 From: Jan Eitzinger Date: Thu, 5 Dec 2024 08:12:10 +0100 Subject: [PATCH] Prepare release v0.1.1 --- .gitignore | 4 ++-- Makefile | 2 +- ReleaseNotes.md | 7 +++---- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index f2ce56d..2fe6453 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,6 @@ *.dll *.so *.dylib -/cc-metric-store # Test binary, built with `go test -c` *.test @@ -16,6 +15,7 @@ # vendor/ # Project specific ignores +/cc-metric-store /var aditya.creds @@ -27,4 +27,4 @@ test_ccms_api.sh test_ccms_free_api.sh test_ccms_write_api.sh sample_alex.txt -sample_fritz.txt \ No newline at end of file +sample_fritz.txt diff --git a/Makefile b/Makefile index 3333add..5d74b4f 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ TARGET = ./cc-metric-store VAR = ./var/checkpoints/ -VERSION = 0.1.0 +VERSION = 0.1.1 GIT_HASH := $(shell git rev-parse --short HEAD || echo 'development') CURRENT_TIME = $(shell date +"%Y-%m-%d:T%H:%M:%S") LD_FLAGS = '-s -X main.date=${CURRENT_TIME} -X main.version=${VERSION} -X main.commit=${GIT_HASH}' diff --git a/ReleaseNotes.md b/ReleaseNotes.md index a24097f..b38353c 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,10 +1,10 @@ -# `cc-metric-store` version 0.1.0 +# `cc-metric-store` version 0.1.1 -This is a minor release of `cc-metric-store`, the metric timeseries cache +This is a bugfix release of `cc-metric-store`, the metric timeseries cache implementation of ClusterCockpit. For release specific notes visit the [ClusterCockpit Documentation](https://clusterockpit.org/docs/release/). -Notable changes: +Notable changes in version 0.1.0: - Cleanup of code and restructuring - Document REST API with Swagger @@ -14,7 +14,6 @@ Notable changes: - Support also ms, ns in line protocol - Support NATS credentials - ## Breaking changes None