Skip to content

Commit

Permalink
v3.6.22
Browse files Browse the repository at this point in the history
  • Loading branch information
kujirahand committed Sep 28, 2024
1 parent bdebe92 commit 01681f2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nadesiko3core",
"version": "3.6.21",
"version": "3.6.22",
"description": "Japanese Programming Language Nadesiko v3 core",
"main": "index.mjs",
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions core/src/nako_core_version.mts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export interface NakoCoreVersion {
}
// 実際のバージョン定義 (自動生成されるので以下を編集しない)
const coreVersion: NakoCoreVersion = {
version: '3.6.21',
version: '3.6.22',
major: 3,
minor: 6,
patch: 21
patch: 22
}
export default coreVersion
2 changes: 1 addition & 1 deletion core/test/flow_test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ describe('flow_test', async () => {
'ここまで\n' +
'Aを表示;', '321')
})
it('「AからBまでNずつ減らし繰り返す」文でBからAまでも実行してしまう問題', async () => {
it('「AからBまでNずつ減らし繰り返す」文でBからAまでも実行してしまう問題 #1753', async () => {
await cmp(
'A="";Nを1から3まで繰り返す\n' +
'  A=A&N\n' +
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nadesiko3",
"version": "3.6.21",
"version": "3.6.22",
"description": "Japanese Programming Language",
"type": "module",
"main": "src/index.mjs",
Expand Down
4 changes: 2 additions & 2 deletions src/nako_version.mts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export interface NakoVersion {
}
// 実際のバージョン定義 (自動生成されるので以下を編集しない)
const nakoVersion: NakoVersion = {
version: '3.6.21',
version: '3.6.22',
major: 3,
minor: 6,
patch: 21
patch: 22
}
export default nakoVersion

0 comments on commit 01681f2

Please sign in to comment.