Skip to content

Commit

Permalink
0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed Jul 19, 2023
1 parent fae923b commit 04c2e2f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[Read translated version (en)](./translations/en/CHANGELOG.md)

# 0.14.0

- オブジェクトの値を配列化する`Obj:vals`を追加
- 文字列が`Json:parse`でパース可能であるかを判定する関数`Json:parsable`を追加
- or/andの結果が第一引数で確定する時、第二引数を評価しないように
- Fix immediate value check in Async:interval

# 0.13.3
- 乱数を生成するとき引数の最大値を戻り値に含むように
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syuilo/aiscript",
"version": "0.13.3",
"version": "0.14.0",
"description": "AiScript implementation",
"author": "syuilo <syuilotan@yahoo.co.jp>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion playground/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div id="root">
<h1>AiScript (v0.13.3) Playground</h1>
<h1>AiScript (v0.14.0) Playground</h1>
<div id="grid1">
<div id="editor" class="container">
<header>Input<div class="actions"><button @click="setCode">FizzBuzz</button></div></header>
Expand Down
2 changes: 1 addition & 1 deletion src/interpreter/lib/std.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const std: Record<string, Value> = {
'help': STR('SEE: https://github.com/syuilo/aiscript/blob/master/docs/get-started.md'),

//#region Core
'Core:v': STR('0.13.3'), // TODO: package.jsonを参照
'Core:v': STR('0.14.0'), // TODO: package.jsonを参照

'Core:ai': STR('kawaii'),

Expand Down

0 comments on commit 04c2e2f

Please sign in to comment.