2

What's the best source of emacs release notes - especially for reading prior to installing an update?

I searched Google for "emacs release notes". There are some posts about specific releases (and some, like this about Emacs 25.1, are really good), but no definitive source.

There's another question on this site which discusses what's new in Emacs 25. The answers and comments there point to some source locations - are those generalizable?

Doug Harris
  • 189
  • 12

2 Answers2

3

The Emacs NEWS file is the "history of user-visible changes."

The NEWS file on the emacs master git branch shows the latest in development http://git.savannah.gnu.org/cgit/emacs.git/tree/etc/NEWS. As of this writing, it shows features planned for Emacs 26.1

If you need release notes for an earlier version, browse the etc directory for files like NEWS.25, NEWS.24, etc.

Alternately, browse starting at the top of the repository, click on one branch (e.g. emacs-25 and navigate to etc/NEWS to see the news of that branch.

Doug Harris
  • 189
  • 12
1

C-u C-h C-n makes things pretty straightforward if a particular release is of interest.

For example, try C-u C-h C-n and then enter "25.1" to review the NEWS.25 file content.

dat
  • 291
  • 4
  • 11