diff --git a/README.md b/README.md index 340d66a6..82ca464e 100644 --- a/README.md +++ b/README.md @@ -776,6 +776,16 @@ the tests are always running and the docs are always in sync: Oh, and don't edit `README.md` directly, it is auto-generated. Change `readme-template.md` or `examples-to-docs.el` instead. +## Changelist + +### From 1.1.0 to 1.2.0 + +- Add `-last` (Matus Goljer) +- Add `-insert-at` (Emanuel Evans) +- Add `-when-let` and `-if-let` (Emanuel Evans) +- Add `-when-let*` and `-if-let*` (Emanuel Evans) +- Some bugfixes + ## Contributors - [Matus Goljer](https://github.com/Fuco1) contributed `-union`, `-separate`, `-zip` and `-zip-with`. diff --git a/dash.el b/dash.el index 252dd27b..2cb00b85 100644 --- a/dash.el +++ b/dash.el @@ -3,7 +3,7 @@ ;; Copyright (C) 2012 Magnar Sveen ;; Author: Magnar Sveen -;; Version: 1.1.0 +;; Version: 1.2.0 ;; 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 6e12ca0d..daf227a9 100644 --- a/readme-template.md +++ b/readme-template.md @@ -69,6 +69,16 @@ the tests are always running and the docs are always in sync: Oh, and don't edit `README.md` directly, it is auto-generated. Change `readme-template.md` or `examples-to-docs.el` instead. +## Changelist + +### From 1.1.0 to 1.2.0 + +- Add `-last` (Matus Goljer) +- Add `-insert-at` (Emanuel Evans) +- Add `-when-let` and `-if-let` (Emanuel Evans) +- Add `-when-let*` and `-if-let*` (Emanuel Evans) +- Some bugfixes + ## Contributors - [Matus Goljer](https://github.com/Fuco1) contributed `-union`, `-separate`, `-zip` and `-zip-with`.