From 75379d95514695245d6b6b0a8afbc8cd5c340f81 Mon Sep 17 00:00:00 2001
From: Bryan O'Sullivan <bos@serpentine.com>
Date: Tue, 3 Dec 2013 22:48:09 -0800
Subject: [PATCH] Bump version to 1.0.0.0, add changelog

---
 changelog  | 16 ++++++++++++++++
 text.cabal | 14 +++-----------
 2 files changed, 19 insertions(+), 11 deletions(-)
 create mode 100644 changelog

diff --git a/changelog b/changelog
new file mode 100644
index 00000000..e17e6abd
--- /dev/null
+++ b/changelog
@@ -0,0 +1,16 @@
+1.0.0.0
+
+	* Added support for Unicode 6.3.0 to case conversion functions
+
+	* New function toTitle converts words in a string to title case
+
+	* New functions peekCStringLen and withCStringLen simplify
+	  interoperability with C functionns
+
+	* Added support for decoding UTF-8 in stream-friendly fashion
+
+	* Fixed a bug in mapAccumL
+
+	* Added trusted Haskell support
+
+	* Removed support for GHC 6.10 (released in 2008) and older
diff --git a/text.cabal b/text.cabal
index 0a6fdd91..18fc3334 100644
--- a/text.cabal
+++ b/text.cabal
@@ -1,5 +1,5 @@
 name:           text
-version:        0.11.4.0
+version:        1.0.0.0
 homepage:       https://github.com/bos/text
 bug-reports:    https://github.com/bos/text/issues
 synopsis:       An efficient packed Unicode text type.
@@ -30,16 +30,7 @@ description:
     non-standard encodings, text breaking, and locales), see
     the @text-icu@ package:
     <http://hackage.haskell.org/package/text-icu>
-    .
-    &#8212;&#8212; RELEASE NOTES &#8212;&#8212;
-    .
-    Changes in 0.11.2.0:
-    .
-    * String literals are now converted directly from the format in
-      which GHC stores them into 'Text', without an intermediate
-      transformation through 'String', and without inlining of
-      conversion code at each site where a string literal is declared.
-    .
+
 license:        BSD3
 license-file:   LICENSE
 author:         Bryan O'Sullivan <bos@serpentine.com>
@@ -59,6 +50,7 @@ extra-source-files:
     benchmarks/python/*.py
     benchmarks/ruby/*.rb
     benchmarks/text-benchmarks.cabal
+    changelog
     scripts/*.hs
     tests-and-benchmarks.markdown
     tests/*.hs
-- 
GitLab