diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
 
 All notable changes to the LaunchDarkly Haskell Server-side SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
 
+## [2.0.2] - 2020-10-13
+### Fixed:
+- Removed unused legacy &#34;sel&#34; field from flag model.
+
 ## [2.0.1] - 2020-08-28
 ### Fixed:
 - Expanded dependency supported version range. Thanks @dbaynard!
diff --git a/launchdarkly-server-sdk.cabal b/launchdarkly-server-sdk.cabal
--- a/launchdarkly-server-sdk.cabal
+++ b/launchdarkly-server-sdk.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 2a9a17d37dc0fc309820ae312205bfb71551b9a28e073adaa56cfc892fccb91d
+-- hash: 82a2c20d4d75771f517f54ceb64f5fc0543b4e2c6cc3d45c378a7e00d0b817e9
 
 name:           launchdarkly-server-sdk
-version:        2.0.1
+version:        2.0.2
 synopsis:       Server-side SDK for integrating with LaunchDarkly
 description:    Please see the README on GitHub at <https://github.com/launchdarkly/haskell-server-sdk#readme>
 category:       Web
diff --git a/src/LaunchDarkly/Server/Client/Internal.hs b/src/LaunchDarkly/Server/Client/Internal.hs
--- a/src/LaunchDarkly/Server/Client/Internal.hs
+++ b/src/LaunchDarkly/Server/Client/Internal.hs
@@ -25,7 +25,7 @@
 
 -- | The version string for this library.
 clientVersion :: Text
-clientVersion = "2.0.1"
+clientVersion = "2.0.2"
 
 -- | The status of the client initialization.
 data Status
diff --git a/src/LaunchDarkly/Server/Features.hs b/src/LaunchDarkly/Server/Features.hs
--- a/src/LaunchDarkly/Server/Features.hs
+++ b/src/LaunchDarkly/Server/Features.hs
@@ -71,7 +71,6 @@
     , deleted                :: !Bool
     , prerequisites          :: ![Prerequisite]
     , salt                   :: !Text
-    , sel                    :: !Text
     , targets                :: ![Target]
     , rules                  :: ![Rule]
     , fallthrough            :: !VariationOrRollout
diff --git a/test/Spec/Evaluate.hs b/test/Spec/Evaluate.hs
--- a/test/Spec/Evaluate.hs
+++ b/test/Spec/Evaluate.hs
@@ -54,7 +54,6 @@
         , deleted                = False
         , prerequisites          = []
         , salt                   = ""
-        , sel                    = ""
         , targets                = []
         , rules                  = []
         , fallthrough            = VariationOrRollout
@@ -91,7 +90,6 @@
         , deleted                = False
         , prerequisites          = []
         , salt                   = ""
-        , sel                    = ""
         , targets                = []
         , rules                  = []
         , fallthrough            = VariationOrRollout
@@ -341,7 +339,6 @@
         , deleted                = False
         , prerequisites          = []
         , salt                   = ""
-        , sel                    = ""
         , targets                = []
         , rules                  =
             [ Rule
diff --git a/test/Util/Features.hs b/test/Util/Features.hs
--- a/test/Util/Features.hs
+++ b/test/Util/Features.hs
@@ -15,7 +15,6 @@
     , deleted                = False
     , prerequisites          = []
     , salt                   = ""
-    , sel                    = ""
     , targets                = []
     , rules                  = []
     , fallthrough            = VariationOrRollout
