mirror of
https://github.com/ClusterCockpit/cc-metric-store.git
synced 2024-12-26 08:59:04 +01:00
Merge pull request #38 from ClusterCockpit/hotfix
Prepare release v0.1.1
This commit is contained in:
commit
c9ec10d6b4
2
.gitignore
vendored
2
.gitignore
vendored
@ -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
|
||||||
|
2
Makefile
2
Makefile
@ -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}'
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user