branch: externals/org-gnosis
commit 693f5931fc7dbfc5fddc6e68670dec358dff96c9
Author: Thanos Apollo <pub...@thanosapollo.org>
Commit: Thanos Apollo <pub...@thanosapollo.org>

    Version bump: 0.0.4
    
    Minor update with the following changes:
      + Adds documentation.
      + Adds Makefile & manifest.scm
      + Updates the formatting of NEWS file
---
 .elpaignore   |  3 +++
 Makefile      | 20 ++++++++++++++++++++
 NEWS          |  6 ------
 NEWS.org      | 21 +++++++++++++++++++++
 manifest.scm  |  3 +++
 org-gnosis.el |  2 +-
 6 files changed, 48 insertions(+), 7 deletions(-)

diff --git a/.elpaignore b/.elpaignore
new file mode 100644
index 0000000000..a6aa61a129
--- /dev/null
+++ b/.elpaignore
@@ -0,0 +1,3 @@
+LICENSE
+Makefile
+manifest.scm
\ No newline at end of file
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000000..e7257fb048
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,20 @@
+.POSIX:
+.PHONY: all doc clean
+.SUFFIXES: .el .elc
+
+EMACS = emacs
+ORG := doc/org-gnosis.org
+TEXI := doc/org-gnosis.texi
+INFO := doc/org-gnosis.info
+
+all: doc
+
+doc:   $(ORG)
+       $(EMACS) --batch \
+       -Q \
+       --load org \
+       --eval "(with-current-buffer (find-file \"$(ORG)\") 
(org-texinfo-export-to-texinfo) (org-texinfo-export-to-info) (save-buffer))" \
+       --kill
+
+clean:
+       rm -f $(TEXI) $(INFO)
diff --git a/NEWS b/NEWS
deleted file mode 100644
index 751d385ce6..0000000000
--- a/NEWS
+++ /dev/null
@@ -1,6 +0,0 @@
--*- mode: org -*-
-
-* 0.0.3
-+ Add gpg encryption support.
-+ Add inserting tags for headings (from tags found in the db).
-+ Minor improvements in error messages & error handling.
diff --git a/NEWS.org b/NEWS.org
new file mode 100644
index 0000000000..0ad948f72c
--- /dev/null
+++ b/NEWS.org
@@ -0,0 +1,21 @@
+#+TITLE: Org Gnosis NEWS
+#+AUTHOR: Thanos Apollo
+#+EMAIL: pub...@thanosapollo.org
+#+OPTIONS: ':nil toc:nil num:nil author:nil email:nil
+
+
+This document contains the release notes that are included in each
+tagged commit on the project's main git repository:
+<https://git.thanosapollo.org/org-gnosis>.
+
+* 0.0.4
+Minor update with the following changes:
+  + Adds documentation.
+  + Adds Makefile & manifest.scm
+  + Updates the formatting of NEWS file
+
+* 0.0.3
+Minor Update that adds the following features:
+  + gpg encryption support.
+  + Inserting tags for headings, with completions of tags found in the db.
+  + Minor improvements in error messages & error handling.
diff --git a/manifest.scm b/manifest.scm
new file mode 100644
index 0000000000..07089c668c
--- /dev/null
+++ b/manifest.scm
@@ -0,0 +1,3 @@
+;;
+(specifications->manifest
+  (list "make" "texinfo" "emacs-next-pgtk" "emacs-org" "emacs-emacsql"))
diff --git a/org-gnosis.el b/org-gnosis.el
index 9923914a80..95b5e85464 100644
--- a/org-gnosis.el
+++ b/org-gnosis.el
@@ -5,7 +5,7 @@
 ;; Author: Thanos Apollo <pub...@thanosapollo.org>
 ;; Keywords: extensions
 ;; URL: https://thanosapollo.org/projects/org-gnosis/
-;; Version: 0.0.3
+;; Version: 0.0.4
 
 ;; Package-Requires: ((emacs "27.2") (emacsql "4.0.0") (compat "29.1.4.2"))
 

Reply via email to