Skip to content

Commit

Permalink
Bump to version 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
skeeto committed Aug 24, 2019
1 parent c9350c8 commit 63b26ee
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.POSIX:
EMACS = emacs
BATCH = $(EMACS) -batch -Q -L . -L tests
VERSION = 3.1.0
VERSION = 3.2.0

EL = elfeed-csv.el elfeed-curl.el elfeed-db.el elfeed-lib.el \
elfeed-log.el elfeed-show.el elfeed.el xml-query.el \
Expand Down
23 changes: 23 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changes

## 3.2.0 (2019-08-24)

* Support for absolute date/time expressions in filters. See README.md
for documentation and examples.

* curl's `--disable` is now default. To load your .curlrc file, use
`--config` explicitly in `elfeed-curl-extra-arguments`.

* Re-enable curl's HTTP/2 support.

* Function `elfeed-next-link` was renamed to `elfeed-show-next-link`.

* New search buffer bindings: <, >, h, c

* Multiple authors are now parsed from entries. Reflecting this, the
meta key for authors is now `:authors` instead of `:author`. The
value is always a list of zero or more authors.

* New variable: `elfeed-show-unique-buffers`. Allows for displaying
multiple show buffers at the same time.

* Various minor fixes and improvements.

## 3.1.0 (2018-08-29)

* Add `elfeed-show-enclosure-filename-function` for controlling
Expand Down
2 changes: 1 addition & 1 deletion elfeed-pkg.el
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
(define-package "elfeed" "3.1.0"
(define-package "elfeed" "3.2.0"
"an Emacs Atom/RSS feed reader"
'((emacs "24.3")))
2 changes: 1 addition & 1 deletion elfeed.el
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"An Emacs web feed reader."
:group 'comm)

(defconst elfeed-version "3.1.0")
(defconst elfeed-version "3.2.0")

(defcustom elfeed-feeds ()
"List of all feeds that Elfeed should follow.
Expand Down
4 changes: 2 additions & 2 deletions web/elfeed-web-pkg.el
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
(define-package "elfeed-web" "3.1.0"
(define-package "elfeed-web" "3.2.0"
"web interface to Elfeed"
'((simple-httpd "1.4.3") (elfeed "1.4.0") (emacs "24.1")))
'((simple-httpd "1.5.1") (elfeed "3.2.0") (emacs "24.3")))

0 comments on commit 63b26ee

Please sign in to comment.