commit 8a9e4dc287278ac0347f88633275a88f97e74301
parent 8f263cc1732edc2fa108933baddd0b191fc7ec60
Author: Andreas Gruhler <agruhl@gmx.ch>
Date: Wed, 15 Jan 2025 20:20:20 +0100
feat: release version 0.15
Diffstat:
3 files changed, 8 insertions(+), 5 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
@@ -1,4 +1,7 @@
-## [0.15 Unreleased]
+## [0.16 Unreleased]
+
+## [0.15] - 2025-01-15
+Fix missing bindir for MacOS install
## [0.14] - 2025-01-15
Remove lttng and replace with simpler debug messsages to stderr to fix MacOS
diff --git a/nix/diary.nix b/nix/diary.nix
@@ -3,7 +3,7 @@ let
in
pkgs.stdenv.mkDerivation {
name = "diary";
- version = "v0.14";
+ version = "v0.15";
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.14";
- hash = "sha256-WOkoczaGE7x4PntD9I+7dFIqJ/d8GkdVcDRFAGSQ6Go=";
+ rev = "refs/tags/v0.15";
+ hash = "sha256-9+uQZnHgn2d0XLOHci2+qqRCgoz+qTLpuEtY0clwXxI=";
};
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.15-unstable"
+#define DIARY_VERSION "0.15"
static const char* WEEKDAYS[] = {"Su","Mo","Tu","We","Th","Fr","Sa"};