Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v3.6.39 #1878

Merged
merged 1 commit into from
Dec 20, 2024
Merged

v3.6.39 #1878

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.38",
"version": "3.6.39",
"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.38',
version: '3.6.39',
major: 3,
minor: 6,
patch: 38
patch: 39
}
export default coreVersion
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.38",
"version": "3.6.39",
"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.38',
version: '3.6.39',
major: 3,
minor: 6,
patch: 38
patch: 39
}
export default nakoVersion
Loading