Skip to content

Commit 08899eb

Browse files
authored
Merge pull request #343 from pepeiborra/current-directory
Expose NormalizedFilePath smart constructor
2 parents a46ee4d + 20f5f7c commit 08899eb

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

lsp-test/lsp-test.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: lsp-test
3-
version: 0.14.0.0
3+
version: 0.14.0.1
44
synopsis: Functional test framework for LSP servers.
55
description:
66
A test framework for writing tests against
@@ -36,7 +36,7 @@ library
3636
, parser-combinators:Control.Applicative.Combinators
3737
default-language: Haskell2010
3838
build-depends: base >= 4.10 && < 5
39-
, lsp-types == 1.2.*
39+
, lsp-types == 1.3.*
4040
, aeson
4141
, time
4242
, aeson-pretty

lsp-types/lsp-types.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: lsp-types
2-
version: 1.2.0.0
2+
version: 1.3.0.0
33
synopsis: Haskell library for the Microsoft Language Server Protocol, data types
44

55
description: An implementation of the types to allow language implementors to

lsp-types/src/Language/LSP/Types/Uri.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ module Language.LSP.Types.Uri
1010
, toNormalizedUri
1111
, fromNormalizedUri
1212
, NormalizedFilePath
13+
, normalizedFilePath
1314
, toNormalizedFilePath
1415
, fromNormalizedFilePath
1516
, normalizedFilePathToUri

lsp/lsp.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: lsp
3-
version: 1.2.0.0
3+
version: 1.2.0.1
44
synopsis: Haskell library for the Microsoft Language Server Protocol
55

66
description: An implementation of the types, and basic message server to
@@ -41,7 +41,7 @@ library
4141
, exceptions
4242
, hslogger
4343
, hashable
44-
, lsp-types == 1.2.*
44+
, lsp-types == 1.3.*
4545
, dependent-map
4646
, lens >= 4.15.2
4747
, mtl

0 commit comments

Comments
 (0)