Skip to content

Commit

Permalink
Bump to 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
skeeto committed Jan 31, 2021
1 parent af15a21 commit 362bbe5
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 12 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.3.0
VERSION = 3.4.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
20 changes: 20 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changes

## 3.4.0 (2021-01-30)

* New search filter: ~ excludes matching feeds

* Support fetching feeds via file://

* Support fetching feeds via the Gopher protocol

* "End of entries" no longer appears in elfeed-search

* Support bookmarks in entries

* New customizations: elfeed-show-entry-switch, elfeed-show-entry-delete

* More extensive information from elfeed-curl-get-capabilities

* New elfeed-show command: elfeed-kill-link-url-at-point (c)

* Various other minor behavior improvements

## 3.3.0 (2019-11-23)

* New option: `elfeed-search-remain-on-entry`.
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.3.0"
(define-package "elfeed" "3.4.0"
"an Emacs Atom/RSS feed reader"
'((emacs "24.3")))
10 changes: 1 addition & 9 deletions elfeed.el
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,6 @@
;; Elfeed is a web feed client for Emacs, inspired by notmuch. See
;; the README for full documentation.

;; Notice: Before stamping a new release the following places need to
;; be updated:
;; * NEWS.md
;; * elfeed.el (`elfeed-version')
;; * elfeed-pkg.el
;; * web/elfeed-web-pkg.el
;; * Makefile (VERSION)

;;; Code:

(require 'cl-lib)
Expand All @@ -39,7 +31,7 @@
"An Emacs web feed reader."
:group 'comm)

(defconst elfeed-version "3.3.0")
(defconst elfeed-version "3.4.0")

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

0 comments on commit 362bbe5

Please sign in to comment.