Bump to 0.6.1.0 0.6.1.0
authorLuke Lau <luke_lau@icloud.com>
Sat, 24 Aug 2019 10:33:37 +0000 (11:33 +0100)
committerLuke Lau <luke_lau@icloud.com>
Sat, 24 Aug 2019 10:33:37 +0000 (11:33 +0100)
ChangeLog.md
lsp-test.cabal
src/Language/Haskell/LSP/Test/Parsing.hs

index aa9d2af5f7ecaadb19a5842dbe82bb68f21b55d7..a0c18566657f1ae58ff93333aed33cc5a9e0f99f 100644 (file)
@@ -1,5 +1,9 @@
 # Revision history for lsp-test
 
 # Revision history for lsp-test
 
+## 0.6.1.0 -- 2019-08-24
+
+* Add `satisfyMaybe` (@cocreature)
+
 ## 0.6.0.0 -- 2019-07-04
 
 * Update to haskell-lsp-0.15.0.0 (@lorenzo)
 ## 0.6.0.0 -- 2019-07-04
 
 * Update to haskell-lsp-0.15.0.0 (@lorenzo)
index 1c8350a212e2a792e55c72e75c347df55f026776..e4c465b052ff312794aa3f387564dd388d44f53c 100644 (file)
@@ -1,5 +1,5 @@
 name:                lsp-test
 name:                lsp-test
-version:             0.6.0.0
+version:             0.6.1.0
 synopsis:            Functional test framework for LSP servers.
 description:
   A test framework for writing tests against
 synopsis:            Functional test framework for LSP servers.
 description:
   A test framework for writing tests against
index 0810d20c0f56f45909ef5b3d30c79b78c34019de..52f97ae8e80a62da02e4614f5f00a5241cd5f175 100644 (file)
@@ -68,7 +68,7 @@ satisfy pred = satisfyMaybe (\msg -> if pred msg then Just msg else Nothing)
 
 -- | Consumes and returns the result of the specified predicate if it returns `Just`.
 --
 
 -- | Consumes and returns the result of the specified predicate if it returns `Just`.
 --
--- @since 0.5.3.0
+-- @since 0.6.1.0
 satisfyMaybe :: (FromServerMessage -> Maybe a) -> Session a
 satisfyMaybe pred = do
 
 satisfyMaybe :: (FromServerMessage -> Maybe a) -> Session a
 satisfyMaybe pred = do