diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,15 @@
+# 0.2.1
+
+- Refactored to use the `CoRec` type provided by `vinyl` >= 0.6.0
+
+- Fixed bug in typing mostly-numeric columns
+Such columns must be represented as `Text`. Previously, we strove a bit too hard to avoid falling back to `Text` resulting in dropping rows containing non-numeric values for columns we crammed into a numeric type.
+
+- Minor optimization of CSV parsing
+In particular, dealing with RFC4180 style quoting
+
+- GHC-8.2.1 compatibility
+
 # 0.1.10
 
 - Added CSV output functions: `produceCSV` and `writeCSV`
diff --git a/Frames.cabal b/Frames.cabal
--- a/Frames.cabal
+++ b/Frames.cabal
@@ -1,5 +1,5 @@
 name:                Frames
-version:             0.2.0
+version:             0.2.1
 synopsis:            Data frames For working with tabular data files
 description:         User-friendly, type safe, runtime efficient tooling for
                      working with tabular data deserialized from
