commit c326ccb5a4058fc197c4952e838ff74ae771e86b
parent 64477348ff4e5c04e05c5c79fa7b0ba68edebed2
Author: Andreas Gruhler <agruhl@gmx.ch>
Date: Sat, 15 Feb 2025 20:26:10 +0100
feat: release version 0.16
Diffstat:
3 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
@@ -1,4 +1,9 @@
-## [0.16 Unreleased]
+## [0.17 Unreleased]
+
+## [0.16] - 2025-02-22
+* Fix missing CalDAV port
+* Document Nexcloud CalDAV sync
+* Document Homebrew installation
## [0.15] - 2025-01-15
Fix missing bindir for MacOS install
diff --git a/nix/diary.nix b/nix/diary.nix
@@ -3,7 +3,7 @@ let
in
pkgs.stdenv.mkDerivation {
name = "diary";
- version = "v0.15";
+ version = "v0.16";
buildInputs = with pkgs; [
pkg-config
ncurses
@@ -13,8 +13,8 @@ in
src = pkgs.fetchgit {
url = "https://git.in0rdr.ch/diary.git";
- rev = "refs/tags/v0.15";
- hash = "sha256-9+uQZnHgn2d0XLOHci2+qqRCgoz+qTLpuEtY0clwXxI=";
+ rev = "refs/tags/v0.16";
+ hash = "sha256-aLkc+mnoTc+8Fn7ulk/8yjCIzuLNQZ0piv+P+1euj8Y=";
};
installPhase = ''
diff --git a/src/diary.h b/src/diary.h
@@ -28,7 +28,7 @@
#define XDG_CONFIG_HOME_FALLBACK "~/.config"
#define CONFIG_FILE_PATH "diary/diary.cfg"
-#define DIARY_VERSION "0.16-unstable"
+#define DIARY_VERSION "0.16"
static const char* WEEKDAYS[] = {"Su","Mo","Tu","We","Th","Fr","Sa"};