summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2019-08-05 15:26:46 +0200
committerPatrick Spek <p.spek@tyil.nl>2019-08-05 15:26:46 +0200
commitf902fa2cc62c60aa614ef7efb60bde0d1c9d2e15 (patch)
treec18d44e0bb46ecc2b3ebf5568e2b959f2de01dff /CHANGELOG.md
parent03f58fc9e875b6c5c33e73096bacd4b72d084e6c (diff)
Rewrite String::Fold
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 618a64d..964bf7c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,5 +5,19 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic
Versioning](http://semver.org/spec/v2.0.0.html).
+## [UNRELEASED]
+
+### Changed
+
+The method of folding strings has been rewritten, to hopefully work better in
+all circumstances.
+
+### Removed
+
+The `indent` parameter has been removed from `&fold`. This functionality is
+left up to the user, and can still be easily achieved by lowering the `width`
+parameter and calling `&indent` from the upstream code.
+
## [0.1.0] - 2018-07-08
+
- Initial release