Bump version to 0.4.3

This commit is contained in:
Robin Heggelund Hansen 2024-06-22 22:04:45 +02:00
parent 82345d88d5
commit 4f09526077
No known key found for this signature in database
4 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
Cabal-version: 3.8
Name: gren
Version: 0.4.0
Version: 0.4.3
Synopsis:
The `gren` command line interface.

View File

@ -4,14 +4,14 @@
"source-directories": [
"src"
],
"gren-version": "0.3.0",
"gren-version": "0.4.0",
"dependencies": {
"direct": {
"gren-lang/core": "local:../core",
"gren-lang/node": "local:../node"
"gren-lang/core": "5.0.0",
"gren-lang/node": "4.0.0"
},
"indirect": {
"gren-lang/url": "3.0.0"
"gren-lang/url": "4.0.0"
}
}
}

View File

@ -3501,7 +3501,7 @@ var $gren_lang$node$FileSystem$Path$prepend = F2(function(left, right) {
var $gren_lang$node$FileSystem$Path$append = F2(function(left, right) {
return A2($gren_lang$node$FileSystem$Path$prepend, right, left);
});
var $author$project$Main$compilerVersion = '0.4.0';
var $author$project$Main$compilerVersion = '0.4.3';
var $gren_lang$core$Maybe$map = F2(function(f, maybe) {
if (maybe.$ === 'Just') {
var value = maybe.a;

View File

@ -38,7 +38,7 @@ type alias Model =
compilerVersion : String
compilerVersion =
"0.4.0"
"0.4.3"
init : Node.Environment -> Init.Task { model : Model, command : Cmd Msg }