branch: externals/boxy-headings commit 4bf32ae0bc6de074b3fbef9af643b60b8fd75255 Author: Amy Grinn <grinn....@gmail.com> Commit: Amy Grinn <grinn....@gmail.com>
Added NEWS file --- Eldev | 15 +++++++++++++++ NEWS | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 68 insertions(+) diff --git a/Eldev b/Eldev index 7a223580b6..144de0eedd 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 0000000000..9e59406534 --- /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