commit 4221cbbeaded390af2df00fdef7e725383408bc2
parent 13bca4961da42b3730f782da64340148001a1463
Author: Andreas Gruhler <andreas.gruhler@adfinis.com>
Date: Sat, 16 Sep 2023 23:35:18 +0200
doc: changelog and release checklist
Diffstat:
3 files changed, 16 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
@@ -0,0 +1,7 @@
+## [0.2 Unreleased]
+
+## [0.1] - 2023-09-16
+
+### Added
+* curlable frontend, weekly availability table
+* store availability in sqlite database
diff --git a/RELEASES.md b/RELEASES.md
@@ -0,0 +1,6 @@
+# Release Checklist
+
+* prepare CHANGELOG file
+* update version string in `main.go`, remove nightly suffix
+* commit and add tag
+* bump version in `main.go` and add `-nightly`, commit
diff --git a/main.go b/main.go
@@ -9,6 +9,8 @@ import (
"github.com/julienschmidt/httprouter"
)
+var hivedavVersion = "v0.2-nightly"
+
func main() {
// If exists, load config file from pwd
conf := &config.Config{}
@@ -23,7 +25,7 @@ func main() {
log.Fatal("Error creating server with config: ", err)
}
- log.Println("Starting hivedav v0.1 🍯")
+ log.Printf("Starting hivedav %s 🍯\n", hivedavVersion)
log.Println("Reading availability from:", conf.CaldavUri)
log.Println("Reading as user:", conf.CaldavUser)