diff --git a/README.md b/README.md index 4387f8e..d24bf99 100644 --- a/README.md +++ b/README.md @@ -1063,6 +1063,16 @@ Change `readme-template.md` or `examples-to-docs.el` instead. ## Changelist +### From 1.8.0 to master + +The stated scope of dash is increasing. It now includes more +functional style functions, like combinators and threading macros. +These have been creeping in anyway, since they're so darn useful. Time +to make it official. :) + +- Split out `dash-functional.el` (Matus Goljer) +- Add `-andfn`, `-orfn`, `-not`, `-cut`, `-const`, `-flip` and `-on`. (Matus Goljer) + ### From 1.7.0 to 1.8.0 - Add `-first-item` and `-last-item` (Wilfred Hughes) diff --git a/dash-functional.el b/dash-functional.el index 86357cb..cb03c89 100644 --- a/dash-functional.el +++ b/dash-functional.el @@ -1,8 +1,9 @@ ;;; dash-functional.el --- Collection of useful combinators for Emacs Lisp -*- lexical-binding: t -*- -;; Copyright (C) 2013 Magnar Sveen +;; Copyright (C) 2013 Matus Goljer, Magnar Sveen -;; Author: Magnar Sveen +;; Authors: Matus Goljer +;; Magnar Sveen ;; Keywords: lisp functions combinators ;; This program is free software; you can redistribute it and/or modify diff --git a/readme-template.md b/readme-template.md index 7d7624b..2aaf776 100644 --- a/readme-template.md +++ b/readme-template.md @@ -71,6 +71,16 @@ Change `readme-template.md` or `examples-to-docs.el` instead. ## Changelist +### From 1.8.0 to master + +The stated scope of dash is increasing. It now includes more +functional style functions, like combinators and threading macros. +These have been creeping in anyway, since they're so darn useful. Time +to make it official. :) + +- Split out `dash-functional.el` (Matus Goljer) +- Add `-andfn`, `-orfn`, `-not`, `-cut`, `-const`, `-flip` and `-on`. (Matus Goljer) + ### From 1.7.0 to 1.8.0 - Add `-first-item` and `-last-item` (Wilfred Hughes)