Skip to content

Commit 344e70e

Browse files
Releasing version 2.0.0
1 parent 8d51b9d commit 344e70e

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
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).
44

5+
## [2.0.0] - 2020-04-21
6+
### Changed:
7+
- The function `userSetKey` is now takes `Text` instead of `Maybe Text` for the key. This originally existed for compatibility with an internal test suite.
8+
9+
### Removed:
10+
- The constructor `EvalErrorUserNotSpecified` has been removed from `EvalErrorKind`.
11+
512
## [1.0.4] - 2020-04-06
613
### Fixed:
714
- Widened time and lens dependency ranges. Thanks @nbouscal!

package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: launchdarkly-server-sdk
2-
version: 1.0.4
2+
version: 2.0.0
33
github: "launchdarkly/haskell-server-sdk"
44
license: Apache-2.0
55
license-file: "LICENSE"

src/LaunchDarkly/Server/Client/Internal.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ newtype Client = Client ClientI
2525

2626
-- | The version string for this library.
2727
clientVersion :: Text
28-
clientVersion = "1.0.4"
28+
clientVersion = "2.0.0"
2929

3030
-- | The status of the client initialization.
3131
data Status

0 commit comments

Comments
 (0)