Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenreup committed Dec 18, 2024
1 parent c58ef2d commit 30a41e4
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 44 deletions.
86 changes: 43 additions & 43 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceRoot}\\src\\cmd\\duwa\\duwa.go",
"console": "integratedTerminal",
"cwd": "${workspaceRoot}",
"args": [
"-f",
"${workspaceRoot}\\examples\\games\\tictactoe.duwa"
]
},
{
"name": "Wasm",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceRoot}/src/cmd/wasm/duwa.go",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}",
"args": [
"-f",
"${workspaceRoot}\\examples\\games\\tictactoe.duwa"
]
},
{
"name": "Tools",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceRoot}\\src\\cmd\\tools\\tools.go",
"console": "integratedTerminal",
"cwd": "${workspaceRoot}",
"args": []
},
]
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceRoot}\\src\\cmd\\duwa\\duwa.go",
"console": "integratedTerminal",
"cwd": "${workspaceRoot}",
"args": [
"run",
"${workspaceRoot}\\examples\\functions.duwa"
]
},
{
"name": "Wasm",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceRoot}/src/cmd/wasm/duwa.go",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}",
"args": [
"run",
"${workspaceRoot}\\examples\\games\\tictactoe.duwa"
]
},
{
"name": "Tools",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceRoot}\\src\\cmd\\tools\\tools.go",
"console": "integratedTerminal",
"cwd": "${workspaceRoot}",
"args": []
},
]
}
2 changes: 1 addition & 1 deletion src/cmd/duwa/duwa.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (

var (
// Version information
version = " v0.1.0"
version = " v0.1.1"
commit = "unknown"
date = "unknown"

Expand Down

0 comments on commit 30a41e4

Please sign in to comment.