diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
 # Changelog
 
+## 0.1.6.0
+
+- Add a nix flake
+- Add the work_in_progress change field support
+- Remove invalid change status "DRAFT"
+
 ## 0.1.5.1
 
 - Allow bytestring-0.11
diff --git a/gerrit.cabal b/gerrit.cabal
--- a/gerrit.cabal
+++ b/gerrit.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.4
 name:                gerrit
-version:             0.1.5.1
+version:             0.1.6.0
 synopsis:            A gerrit client library
 description:
     Gerrit is a client library to interface with https://www.gerritcodereview.com/
diff --git a/src/Gerrit/Data/Change.hs b/src/Gerrit/Data/Change.hs
--- a/src/Gerrit/Data/Change.hs
+++ b/src/Gerrit/Data/Change.hs
@@ -111,7 +111,7 @@
           (fromMaybe [] (Gerrit.Data.Change.all gerritLabel))
   _ -> False
 
-data GerritChangeStatus = NEW | MERGED | ABANDONED | DRAFT
+data GerritChangeStatus = NEW | MERGED | ABANDONED
   deriving (Eq, Show, Generic, FromJSON)
 
 -- https://gerrit-review.googlesource.com/Documentation/json.html
@@ -231,7 +231,8 @@
     topic :: Maybe Text,
     insertions :: Int,
     deletions :: Int,
-    more_changes :: Maybe Bool
+    more_changes :: Maybe Bool,
+    work_in_progress :: Maybe Bool
   }
   deriving (Eq, Show, Generic)
 
