Bump version number.

This commit is contained in:
Robin Heggelund Hansen 2024-06-17 20:47:37 +02:00
parent d6f87ecc3d
commit 6c295daca0
No known key found for this signature in database
4 changed files with 19 additions and 3 deletions

View File

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

16
package-lock.json generated Normal file
View File

@ -0,0 +1,16 @@
{
"name": "gren-lang",
"version": "0.4.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "gren-lang",
"version": "0.4.0",
"license": "BSD-3-Clause",
"bin": {
"gren": "index.js"
}
}
}
}

View File

@ -1,6 +1,6 @@
{
"name": "gren-lang",
"version": "0.3.1",
"version": "0.4.0",
"description": "Compiler for the Gren programming language",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"

View File

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