Skip to content

Commit

Permalink
0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed Jul 20, 2023
1 parent 78e284c commit 0959a3e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[Read translated version (en)](./translations/en/CHANGELOG.md)

# 0.15.0
- Mathを強化
- `&&`, `||` 演算子の項が正しく変換されない可能性のあるバグを修正

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.14.1",
"version": "0.15.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.14.1) Playground</h1>
<h1>AiScript (v0.15.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.14.1'), // TODO: package.jsonを参照
'Core:v': STR('0.15.0'), // TODO: package.jsonを参照

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

Expand Down

0 comments on commit 0959a3e

Please sign in to comment.