diff --git a/README.md b/README.md index b3c2179..e277408 100644 --- a/README.md +++ b/README.md @@ -19,11 +19,11 @@ If you want the function combinators, then also: Add this to the big comment block at the top: - ;; Package-Requires: ((dash "2.12.0")) + ;; Package-Requires: ((dash "2.12.1")) To get function combinators: - ;; Package-Requires: ((dash "2.12.0") (dash-functional "1.2.0") (emacs "24")) + ;; Package-Requires: ((dash "2.12.1") (dash-functional "1.2.0") (emacs "24")) ## Upcoming breaking change! @@ -2387,6 +2387,8 @@ Change `readme-template.md` or `examples-to-docs.el` instead. ## Changelist +- Added lexical binding pragma to dash.el + ### From 2.11 to 2.12 - Add GNU ELPA support. (Phillip Lord) diff --git a/dash-template.texi b/dash-template.texi index b03d5a6..61388f0 100644 --- a/dash-template.texi +++ b/dash-template.texi @@ -13,7 +13,7 @@ @copying -This manual is for @code{dash.el} version 2.12.0. +This manual is for @code{dash.el} version 2.12.1. Copyright © 2012-2015 Magnar Sveen @@ -109,13 +109,13 @@ Alternatively, you can just dump @verb{~dash.el~} or Add this to the big comment block at the top: @lisp -;; Package-Requires: ((dash "2.12.0")) +;; Package-Requires: ((dash "2.12.1")) @end lisp @noindent To get function combinators: @lisp -;; Package-Requires: ((dash "2.12.0") (dash-functional "1.2.0") (emacs "24")) +;; Package-Requires: ((dash "2.12.1") (dash-functional "1.2.0") (emacs "24")) @end lisp @node Syntax highlighting of dash functions diff --git a/dash.el b/dash.el index c70b3cc..e486a75 100644 --- a/dash.el +++ b/dash.el @@ -3,7 +3,7 @@ ;; Copyright (C) 2012-2015 Free Software Foundation, Inc. ;; Author: Magnar Sveen -;; Version: 2.12.0 +;; Version: 2.12.1 ;; Keywords: lists ;; This program is free software; you can redistribute it and/or modify diff --git a/readme-template.md b/readme-template.md index 4cff273..4fb7e0b 100644 --- a/readme-template.md +++ b/readme-template.md @@ -19,11 +19,11 @@ If you want the function combinators, then also: Add this to the big comment block at the top: - ;; Package-Requires: ((dash "2.12.0")) + ;; Package-Requires: ((dash "2.12.1")) To get function combinators: - ;; Package-Requires: ((dash "2.12.0") (dash-functional "1.2.0") (emacs "24")) + ;; Package-Requires: ((dash "2.12.1") (dash-functional "1.2.0") (emacs "24")) ## Upcoming breaking change! @@ -98,6 +98,8 @@ Change `readme-template.md` or `examples-to-docs.el` instead. ## Changelist +- Added lexical binding pragma to dash.el + ### From 2.11 to 2.12 - Add GNU ELPA support. (Phillip Lord)