Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
breck7 committed Jan 2, 2025
1 parent db55cb4 commit b68fb72
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scroll-cli",
"version": "164.11.0",
"version": "164.12.0",
"description": "A language for scientists of all ages. A curated collection of tools for refining and sharing thoughts.",
"main": "scroll.js",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion parsers/root.parsers
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ scrollParser
}
get scrollVersion() {
// currently manually updated
return "164.11.0"
return "164.12.0"
}
// Use the first paragraph for the description
// todo: add a particle method version of get that gets you the first particle. (actulaly make get return array?)
Expand Down
2 changes: 1 addition & 1 deletion parsers/tables.parsers
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ scrollTableParser
const {filename} = this
let delimiter = ""
if (filename) {
const extension = filename.split(".").pop()
const extension = filename.split('?')[0].split(".").pop()
if (extension === "json") delimiter = "json"
if (extension === "particles") delimiter = "particles"
if (extension === "csv") delimiter = ","
Expand Down
3 changes: 3 additions & 0 deletions releaseNotes.scroll
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ ciBadges.scroll
br
thinColumns

πŸ“¦ 164.12.0 1/02/2025
πŸŽ‰ added support for URLS with query strings as table data source

πŸ“¦ 164.11.0 12/29/2024
πŸŽ‰ added slashComment support to table flows
πŸŽ‰ added assertRowCount parser for fast testing of table transformers
Expand Down

0 comments on commit b68fb72

Please sign in to comment.