emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/dash f18a520 326/426: Release 2.7.0


From: Phillip Lord
Subject: [elpa] externals/dash f18a520 326/426: Release 2.7.0
Date: Tue, 04 Aug 2015 19:38:37 +0000

branch: externals/dash
commit f18a520d9092f22a4adcc7f9d24264475513f19c
Author: Magnar Sveen <address@hidden>
Commit: Magnar Sveen <address@hidden>

    Release 2.7.0
---
 README.md          |   43 +++++++++++++++++++++++++++----------------
 dash-functional.el |    2 +-
 dash.el            |    2 +-
 3 files changed, 29 insertions(+), 18 deletions(-)

diff --git a/README.md b/README.md
index ade7fd3..5f0f46a 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.6.0"))
+    ;; Package-Requires: ((dash "2.7.0"))
 
 To get function combinators:
 
-    ;; Package-Requires: ((dash "2.6.0") (dash-functional "1.0.0") (emacs 
"24"))
+    ;; Package-Requires: ((dash "2.7.0") (dash-functional "1.1.0") (emacs 
"24"))
 
 ## Syntax highlighting of dash functions
 
@@ -1904,7 +1904,18 @@ Change `readme-template.md` or `examples-to-docs.el` 
instead.
 
 ## Changelist
 
-### From 2.5.0 to 2.6.0
+### From 2.6 to 2.7
+
+- `-zip` now supports more than two lists (Steve Lamb)
+- Add  `-cycle` ,  `-pad` ,  `-annotate` ,  `-zip-fill` (Steve Lamb)
+- Add `-table`, `-table-flat` (finite cartesian product)
+- Add `-flatten-n`
+- `-slice` now supports "step" argument
+- Add functional combinators `-iteratefn`, `-prodfn`
+- Add `-replace`, `-splice`, `-splice-list` which generalize `-replace-at` and 
`-insert-at`
+- Add `-compose`, `-iteratefn` and `-prodfn` (dash-functional 1.1)
+
+### From 2.5 to 2.6
 
 - Add `-is-prefix-p`, `-is-suffix-p`, `-is-infix-p` (Matus Goljer)
 - Add `-iterate`, `-unfold` (Matus Goljer)
@@ -1912,63 +1923,63 @@ Change `readme-template.md` or `examples-to-docs.el` 
instead.
 - Add `-find-last-index` (Matus Goljer)
 - Add `-list` (Johan Andersson)
 
-### From 2.4.0 to 2.5.0
+### From 2.4 to 2.5
 
 - Add `-same-items?` (Johan Andersson)
 - A few bugfixes
 
-### From 2.3.0 to 2.4.0
+### From 2.3 to 2.4
 
 - Add `-snoc` (Matus Goljer)
 - Add `-replace-at`, `-update-at`, `-remove-at`, and `-remove-at-indices` 
(Matus Goljer)
 
-### From 2.2.0 to 2.3.0
+### From 2.2 to 2.3
 
 - Add tree operations (Matus Goljer)
 - Make font-lock optional
 
-### From 2.1.0 to 2.2.0
+### From 2.1 to 2.2
 
 - Add `-compose` (Christina Whyte)
 
-### From 2.0.0 to 2.1.0
+### From 2.0 to 2.1
 
 - Add indexing operations (Matus Goljer)
 
-### From 1.8.0 to 2.0.0
+### From 1.8 to 2.0
 
 - Split out `dash-functional.el` (Matus Goljer)
 - Add `-andfn`, `-orfn`, `-not`, `-cut`, `-const`, `-flip` and `-on`. (Matus 
Goljer)
 - Fix `-min`, `-max`, `-min-by` and `-max-by` (Matus Goljer)
 
-### From 1.7.0 to 1.8.0
+### From 1.7 to 1.8
 
 - Add `-first-item` and `-last-item` (Wilfred Hughes)
 
-### From 1.6.0 to 1.7.0
+### From 1.6 to 1.7
 
 - Add `-rotate` (Matus Goljer)
 
-### From 1.5.0 to 1.6.0
+### From 1.5 to 1.6
 
 - Add `-min`, `-max`, `-min-by` and `-max-by` (Johan Andersson)
 
-### From 1.4.0 to 1.5.0
+### From 1.4 to 1.5
 
 - Add `-sum` and `-product` (Johan Andersson)
 
-### From 1.3.0 to 1.4.0
+### From 1.3 to 1.4
 
 - Add `-sort`
 - Add `-reduce-r` (Matus Goljer)
 - Add `-reduce-r-from` (Matus Goljer)
 
-### From 1.2.0 to 1.3.0
+### From 1.2 to 1.3
 
 - Add `-partition-in-steps`
 - Add `-partition-all-in-steps`
 
-### From 1.1.0 to 1.2.0
+### From 1.1 to 1.2
 
 - Add `-last` (Matus Goljer)
 - Add `-insert-at` (Emanuel Evans)
diff --git a/dash-functional.el b/dash-functional.el
index 1faf172..eb2484a 100644
--- a/dash-functional.el
+++ b/dash-functional.el
@@ -4,7 +4,7 @@
 
 ;; Authors: Matus Goljer <address@hidden>
 ;;          Magnar Sveen <address@hidden>
-;; Version: 1.0.0
+;; Version: 1.1.0
 ;; Package-Requires: ((dash "2.0.0") (emacs "24"))
 ;; Keywords: lisp functions combinators
 
diff --git a/dash.el b/dash.el
index d0aae94..22f977b 100644
--- a/dash.el
+++ b/dash.el
@@ -3,7 +3,7 @@
 ;; Copyright (C) 2012 Magnar Sveen
 
 ;; Author: Magnar Sveen <address@hidden>
-;; Version: 2.6.0
+;; Version: 2.7.0
 ;; Keywords: lists
 
 ;; This program is free software; you can redistribute it and/or modify



reply via email to

[Prev in Thread] Current Thread [Next in Thread]