Skip to content

Commit

Permalink
Merge pull request #1912 from kujirahand/ver3_6_44
Browse files Browse the repository at this point in the history
ver3.6.44
  • Loading branch information
kujirahand authored Jan 31, 2025
2 parents 98891f6 + 5807ba8 commit 4393e7c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 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.43",
"version": "3.6.44",
"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.43',
version: '3.6.44',
major: 3,
minor: 6,
patch: 43
patch: 44
}
export default coreVersion
2 changes: 1 addition & 1 deletion core/src/nako_csv.mts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function is_numeric(str: string): boolean {
return /^-?\d+(\.\d+)?([eE][-+]?\d+)?$/.test(str);
}

export function parse (txt: string, delimiter: string|undefined = undefined): string[][] {
export function parse (txt: string, delimiter: string|undefined = undefined): (string|number)[][] {
// delimiter
if (delimiter === undefined) {
delimiter = options.delimiter
Expand Down
4 changes: 2 additions & 2 deletions core/src/plugin_csv.mts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const PluginCSV = {
type: 'func',
josi: [['を', 'の', 'で']],
pure: true,
fn: function (str: string): string[][] {
fn: function (str: string): (string | number)[][] {
options.delimiter = ','
return parse(str)
}
Expand All @@ -33,7 +33,7 @@ const PluginCSV = {
type: 'func',
josi: [['を', 'の', 'で']],
pure: true,
fn: function (str: string): string[][] {
fn: function (str: string): (string|number)[][] {
options.delimiter = '\t'
return parse(str)
}
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.43",
"version": "3.6.44",
"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.43',
version: '3.6.44',
major: 3,
minor: 6,
patch: 43
patch: 44
}
export default nakoVersion

0 comments on commit 4393e7c

Please sign in to comment.