diary

Text-based journaling program
git clone https://git.in0rdr.ch/diary.git
Log | Files | Refs | Pull requests |Archive | README | LICENSE

commit 600fd44164ca6bff63ee0b0c76c65f9c1241582f
parent 9a9feb2985751679f161f4aceae61c622a044d3e
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Wed, 15 Jan 2025 19:35:34 +0100

feat: release version 0.14

Diffstat:
MCHANGELOG.md | 6+++++-
Mnix/diary-unstable.nix | 2+-
Mnix/diary.nix | 6+++---
Msrc/diary.h | 2+-
4 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -1,4 +1,8 @@ -## [0.14 Unreleased] +## [0.15 Unreleased] + +## [0.14] - 2025-01-15 +Remove lttng and replace with simpler debug messsages to stderr to fix MacOS +build. ## [0.13] - 2024-09-14 Fix build issue with pkg-config diff --git a/nix/diary-unstable.nix b/nix/diary-unstable.nix @@ -3,7 +3,7 @@ let in pkgs.stdenv.mkDerivation { name = "diary"; - version = "v0.14-unstable"; + version = "v0.15-unstable"; buildInputs = with pkgs; [ pkg-config ncurses diff --git a/nix/diary.nix b/nix/diary.nix @@ -3,7 +3,7 @@ let in pkgs.stdenv.mkDerivation { name = "diary"; - version = "v0.12"; + version = "v0.14"; 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.13"; - hash = "sha256-s8r34e8ovq0D1/9IB9onfn7GeNWkCR+aofD+NblXla0="; + rev = "refs/tags/v0.14"; + hash = "sha256-WOkoczaGE7x4PntD9I+7dFIqJ/d8GkdVcDRFAGSQ6Go="; }; 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.14-unstable" +#define DIARY_VERSION "0.14" static const char* WEEKDAYS[] = {"Su","Mo","Tu","We","Th","Fr","Sa"};