Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions lib/purescript-cst/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.

Expand Down
2 changes: 1 addition & 1 deletion lib/purescript-cst/purescript-cst.cabal
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions npm-package/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down Expand Up @@ -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"
}
}
4 changes: 2 additions & 2 deletions purescript.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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,
Expand Down