From 06749f23b438f79975562d76d6530567cc301c53 Mon Sep 17 00:00:00 2001 From: contrapunctus Date: Wed, 30 Oct 2019 23:02:13 +0530 Subject: [PATCH] Deprecate -date-op-internal, update changelog --- CHANGELOG.md | 13 +++++++++++-- chronometrist-common.el | 1 + 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4d6099..96b3049 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] -* Migrate to new format -* Deprecate -timestamp->seconds, -timestamp-list->seconds, -get-end-time +### Added +* s-expression file format support + +### Removed +* timeclock.el file format support + +### Deprecated +* -timestamp->seconds +* -timestamp-list->seconds +* -get-end-time +* -date-op-internal ## [0.2.1] - 2019-09-09 ### Fixed diff --git a/chronometrist-common.el b/chronometrist-common.el index 945fb6e..1bda91c 100644 --- a/chronometrist-common.el +++ b/chronometrist-common.el @@ -149,6 +149,7 @@ SECONDS] or (HOURS MINUTES SECONDS)." (defun chronometrist-date-op-internal (seconds minutes hours day month year operator count) "Helper function for `chronometrist-date-op'." + (declare (obsolete nil "Chronometrist v0.3.0")) (--> (encode-time seconds minutes hours day month year) (funcall (cond ((equal operator '+) 'time-add)