Merge pull request #38 from ClusterCockpit/hotfix

Prepare release v0.1.1
This commit is contained in:
Jan Eitzinger 2024-12-05 08:13:12 +01:00 committed by GitHub
commit c9ec10d6b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 7 deletions

2
.gitignore vendored
View File

@ -4,7 +4,6 @@
*.dll *.dll
*.so *.so
*.dylib *.dylib
/cc-metric-store
# Test binary, built with `go test -c` # Test binary, built with `go test -c`
*.test *.test
@ -16,6 +15,7 @@
# vendor/ # vendor/
# Project specific ignores # Project specific ignores
/cc-metric-store
/var /var
aditya.creds aditya.creds

View File

@ -1,6 +1,6 @@
TARGET = ./cc-metric-store TARGET = ./cc-metric-store
VAR = ./var/checkpoints/ VAR = ./var/checkpoints/
VERSION = 0.1.0 VERSION = 0.1.1
GIT_HASH := $(shell git rev-parse --short HEAD || echo 'development') GIT_HASH := $(shell git rev-parse --short HEAD || echo 'development')
CURRENT_TIME = $(shell date +"%Y-%m-%d:T%H:%M:%S") 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}' LD_FLAGS = '-s -X main.date=${CURRENT_TIME} -X main.version=${VERSION} -X main.commit=${GIT_HASH}'

View File

@ -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. implementation of ClusterCockpit.
For release specific notes visit the [ClusterCockpit Documentation](https://clusterockpit.org/docs/release/). 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 - Cleanup of code and restructuring
- Document REST API with Swagger - Document REST API with Swagger
@ -14,7 +14,6 @@ Notable changes:
- Support also ms, ns in line protocol - Support also ms, ns in line protocol
- Support NATS credentials - Support NATS credentials
## Breaking changes ## Breaking changes
None None