Skip to content

Commit

Permalink
Merge pull request #1871 from kujirahand/ver3_6_38
Browse files Browse the repository at this point in the history
v3.6.38
  • Loading branch information
kujirahand authored Dec 19, 2024
2 parents 44370fa + 341fb57 commit 03702ec
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 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.37",
"version": "3.6.38",
"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.37',
version: '3.6.38',
major: 3,
minor: 6,
patch: 37
patch: 38
}
export default coreVersion
1 change: 1 addition & 0 deletions core/src/plugin_system.mts
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ export default {
}
}
// Propアクセス支援
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
sys.__registPropAccessor = (f: Function, getProp: (prop: string|string[], sys: NakoSystem) => any, setProp: (prop: string|string[], value: object, sys: NakoSystem) => any) => {
system.__propAccessor.push(
{
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.37",
"version": "3.6.38",
"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.37',
version: '3.6.38',
major: 3,
minor: 6,
patch: 37
patch: 38
}
export default nakoVersion

0 comments on commit 03702ec

Please sign in to comment.