-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release-v0.6.0: (38 commits) Bump version and update changelogs Do not build Language.Rzk.VSCode.* modules with GHCJS Add rzk.yaml to specify files to check Do not depend on lsp and lsp-types with GHCJS Update rzk.nix Cache well-typed modules even in presence of type errors in other modules Slightly improve rzk.yaml error/warning Support incremental typechecking with in-memory cache of well-typed modules Invalidate cache for all files after the first modified file Use file watcher to invalidate cache for typechecked files Sketch cache implementation Add line location to errors Add rzk.nix back (generated manually via cabal2nix --compiler ghcjs) Revert back to calling cabal2nix from the workflow Remove rzk.nix Try using callCabal2nix in try-rzk/default.nix instead Use cabal2nix --compiler ghcjs to generate rzk.nix for GHCJS Add a handler for typechecking all files in config Define a Yaml schema for our config file Add the filepath package for processing paths ...
- Loading branch information
Showing
24 changed files
with
4,009 additions
and
3,727 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include: | ||
- docs/docs/examples/recId.rzk.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
name: rzk | ||
version: 0.5.7 | ||
github: "rzk-lang/rzk" | ||
version: 0.6.0 | ||
github: 'rzk-lang/rzk' | ||
license: BSD3 | ||
author: "Nikolai Kudasov" | ||
maintainer: "[email protected]" | ||
copyright: "2023 Nikolai Kudasov" | ||
author: 'Nikolai Kudasov' | ||
maintainer: '[email protected]' | ||
copyright: '2023 Nikolai Kudasov' | ||
|
||
extra-source-files: | ||
- README.md | ||
|
@@ -33,6 +33,10 @@ dependencies: | |
- text | ||
- optparse-generic | ||
- Glob | ||
- lens | ||
- filepath | ||
- stm | ||
- yaml | ||
|
||
ghc-options: | ||
- -Wall | ||
|
@@ -53,6 +57,16 @@ library: | |
- Language.Rzk.Syntax.Test | ||
- Language.Rzk.Syntax.ErrM | ||
- Language.Rzk.Syntax.Skel | ||
- condition: '!impl(ghcjs)' | ||
exposed-modules: | ||
- Language.Rzk.VSCode.Env | ||
- Language.Rzk.VSCode.Handlers | ||
- Language.Rzk.VSCode.Lsp | ||
- Language.Rzk.VSCode.State | ||
- Language.Rzk.VSCode.Tokenize | ||
dependencies: | ||
- lsp | ||
- lsp-types | ||
|
||
executables: | ||
rzk: | ||
|
@@ -65,7 +79,7 @@ executables: | |
dependencies: | ||
- rzk | ||
when: | ||
- condition: "!impl(ghcjs)" | ||
- condition: '!impl(ghcjs)' | ||
dependencies: | ||
- with-utf8 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.