emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/boxy-headings f52c25a 2/4: Added NEWS file


From: ELPA Syncer
Subject: [elpa] externals/boxy-headings f52c25a 2/4: Added NEWS file
Date: Sun, 17 Oct 2021 09:57:09 -0400 (EDT)

branch: externals/boxy-headings
commit f52c25a529f29127876597ecc334013b967d0f0c
Author: Tyler Grinn <tylergrinn@gmail.com>
Commit: Tyler Grinn <tylergrinn@gmail.com>

    Added NEWS file
---
 Eldev | 15 +++++++++++++++
 NEWS  | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 68 insertions(+)

diff --git a/Eldev b/Eldev
index 7a22358..144de0e 100644
--- a/Eldev
+++ b/Eldev
@@ -99,3 +99,18 @@
         (kill-buffer))
       (directory-files "tests" t "\\.org\\'"))
      (and (> failures 0) (error "Test run had failures")))))
+
+(eldev-defcommand
+ boxy_headings-news (&rest _)
+ "Build NEWS file from gitlab releases."
+ (with-current-buffer
+     (url-retrieve-synchronously 
"https://gitlab.com/api/v4/projects/30139198/releases";)
+   (delete-region (point-min) (point))
+   (let ((response (json-parse-buffer :object-type 'plist :array-type 'list 
:null-object nil)))
+     (with-temp-file "NEWS"
+       (insert "# -*- mode: org -*-")
+       (dolist (release response)
+         (when-let ((name (plist-get release :tag_name))
+                    (description (plist-get release :description)))
+           (insert (format "\n\n* %s\n" name))
+           (insert description)))))))
diff --git a/NEWS b/NEWS
new file mode 100644
index 0000000..9e59406
--- /dev/null
+++ b/NEWS
@@ -0,0 +1,53 @@
+# -*- mode: org -*-
+
+* 2.1.2
+
+- Added NEWS file
+- Fixed bug where sibling relationships were not being added
+
+* 2.1.1
+
+v2.1.1
+
+Fix typo that caused 'left' and 'right' to not be valid REL property values.
+
+See merge request tygrdev/boxy-headings!5
+
+* 2.1.0
+
+v2.1.0
+
+Bug fixes
+- Added org 9.3 dependency for emacs 26.
+
+Improvements
+- Generalized `REL` property using regex to match, for example, all of "in 
front" "in front of" and "in-front".
+- Added max visibility option
+
+Fixes #2
+
+See merge request tygrdev/boxy-headings!4
+
+* 2.0.0
+
+2.0.0
+
+- Renamed boxy-headlines to boxy-headings
+- Standardized defface calls
+
+See merge request tygrdev/boxy-headings!3
+
+* 1.0.2
+
+Updated elpaignore
+
+See merge request tygrdev/boxy-headlines!2
+
+* 1.0.1
+
+1.0.1
+
+- Added changes from Stefan Monnier
+- Changed from cl-defmethod to defun
+
+See merge request tygrdev/boxy-headlines!1



reply via email to

[Prev in Thread] Current Thread [Next in Thread]