Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
breck7 committed Dec 15, 2024
1 parent a9db38c commit c4d4418
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 2 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": "163.2.0",
"version": "163.2.1",
"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 @@ -340,7 +340,7 @@ scrollParser
}
get scrollVersion() {
// currently manually updated
return "163.2.0"
return "163.2.1"
}
// 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
3 changes: 3 additions & 0 deletions parsers/tables.parsers
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ printColumnParser
get join() {
return this.get("join") || "\n"
}
get columnName() {
return this.atoms[1]
}
get columnValues() {
return this.parent.coreTable.map(row => row[this.columnName])
}
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

📦 163.2.1 12/15/2024
🏥 fix regression in printColumn

📦 163.2.0 12/15/2024
🎉 added `summarize` parser

Expand Down
2 changes: 2 additions & 0 deletions tests/posts.scroll
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ header.scroll
posts index subfolder/index
printColumn title
join ·
assertHtmlIncludes
sink

---

Expand Down

0 comments on commit c4d4418

Please sign in to comment.