diff --git a/CHANGELOG.md b/CHANGELOG.md index 8895f0796c..cf4fa206e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,14 @@ Breaking changes: New features: +Bugfixes: + +Internal: + +## v0.14.3 + +New features: + * Display kind signatures and their comments in documentation (#4100 and #4119 by JordanMartinez) The compiler now displays kind signatures for data, newtype, type diff --git a/lib/purescript-cst/README.md b/lib/purescript-cst/README.md index ae69955b43..1775170d86 100644 --- a/lib/purescript-cst/README.md +++ b/lib/purescript-cst/README.md @@ -9,6 +9,7 @@ We provide a table to make it a bit easier to map between versions of `purescrip | `purescript` | `purescript-cst` | | --- | --- | | 0.14.2 | 0.2.0.0 | +| 0.14.3 | 0.3.0.0 | Before v0.14.2, there was a third package, `purescript-ast`. In v0.14.2, `purescript-ast` was merged into `purescript-cst`. diff --git a/lib/purescript-cst/purescript-cst.cabal b/lib/purescript-cst/purescript-cst.cabal index c09705aee5..e04a54afd5 100644 --- a/lib/purescript-cst/purescript-cst.cabal +++ b/lib/purescript-cst/purescript-cst.cabal @@ -1,7 +1,7 @@ cabal-version: 2.4 name: purescript-cst -version: 0.2.0.0 +version: 0.3.0.0 synopsis: PureScript Programming Language Concrete Syntax Tree description: The parser for the PureScript programming language. category: Language diff --git a/npm-package/package.json b/npm-package/package.json index 8a4be9ee47..ad519c778f 100644 --- a/npm-package/package.json +++ b/npm-package/package.json @@ -1,6 +1,6 @@ { "name": "purescript", - "version": "0.14.2", + "version": "0.14.3", "license": "ISC", "description": "PureScript wrapper that makes it available as a local dependency", "author": { @@ -43,7 +43,7 @@ ], "scripts": { "prepublishOnly": "node -e \"require('fs').copyFileSync('purs.bin.placeholder', 'purs.bin');\"", - "postinstall": "install-purescript --purs-ver=0.14.2", + "postinstall": "install-purescript --purs-ver=0.14.3", "test": "echo 'Error: no test specified' && exit 1" } } diff --git a/purescript.cabal b/purescript.cabal index ec4f0bc071..e3cb467064 100644 --- a/purescript.cabal +++ b/purescript.cabal @@ -2,7 +2,7 @@ cabal-version: 2.4 name: purescript -- note: When updating the prerelease identifier, update it in app/Version.hs too! -version: 0.14.2 +version: 0.14.3 synopsis: PureScript Programming Language Compiler description: A small strongly, statically typed programming language with expressive types, inspired by Haskell and compiling to JavaScript. category: Language @@ -159,7 +159,7 @@ common defaults pattern-arrows >=0.0.2 && <0.1, process >=1.6.9.0 && <1.7, protolude >=0.3.0 && <0.4, - purescript-cst ==0.2.0.0, + purescript-cst ==0.3.0.0, regex-tdfa >=1.3.1.0 && <1.4, safe >=0.3.19 && <0.4, scientific >=0.3.6.2 && <0.4,