Skip to content

Commit

Permalink
rephase and update changesets
Browse files Browse the repository at this point in the history
  • Loading branch information
berekuk committed Dec 27, 2023
1 parent b21e014 commit b5d1394
Show file tree
Hide file tree
Showing 23 changed files with 36 additions and 48 deletions.
5 changes: 4 additions & 1 deletion .changeset/breezy-scissors-tie.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@
"@quri/squiggle-components": patch
---

Dates and Durations: Adds new Date scale, dateRanges, and visualizes these in plots for the x axis. Minor changes to the Date library. You can now type 2023year to represent Jan 1 2023.
Dates and Durations improvements
You can now type `Date(2023)` to represent Jan 1 2023.
Added date domains (`f(x: [Date(1980), Date(2050)])`) that's used in function plots for the x axis.
Minor changes to the Date library.
5 changes: 0 additions & 5 deletions .changeset/curvy-rivers-listen.md

This file was deleted.

5 changes: 5 additions & 0 deletions .changeset/custom-1-1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@quri/prettier-plugin-squiggle": patch
---

Improved formatting for pipe statements and newlines
8 changes: 8 additions & 0 deletions .changeset/custom-1-2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"@quri/squiggle-lang": minor
---

Support for tags (`Tag.*` functions) and decorators (`@decoratorName`) that can be used to affect how the value is displayed.
Tags can be attached to any value, and decorators can be attached to any variable or function definition.
Decorators are proxied to Tag functions, e.g. `@name("X var") x = 5` is the same as `x = 5 -> Tag.name("X var")`.
Builtin tags: `@name`, `@description`, `@format`, `@showAs`, `@hide`.
2 changes: 1 addition & 1 deletion .changeset/eleven-snakes-deliver.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@quri/squiggle-lang": patch
---

Added Calculator.make(fn) shorthand
Added `Calculator.make(fn)` shorthand
2 changes: 1 addition & 1 deletion .changeset/few-panthers-wonder.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@quri/squiggle-lang": patch
---

Tag percentates with percentage format
Tag percentage values with percentage format, so that they're rendered as percentages in viewer
2 changes: 1 addition & 1 deletion .changeset/five-pants-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@quri/squiggle-lang": patch
---

Added List.sortBy, List.maxBy, List.minBy, Dict.has, Dict.size, Dict.delete, and added definitions to Number.min and Number.max that support two number params
Added `List.sortBy`, `List.maxBy`, `List.minBy`, `Dict.has`, `Dict.size`, `Dict.delete`, and added definitions to `Number.min` and `Number.max` that support two number params
2 changes: 1 addition & 1 deletion .changeset/giant-pants-pay.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@quri/squiggle-lang": patch
---

Remove Table Title attribute
Removed `title` attribute from `Table.make()`; you can use `@name` and `@description` tags instead
2 changes: 1 addition & 1 deletion .changeset/great-moose-reflect.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"@quri/squiggle-components": patch
---

Calculator.make(fn) should work for functions with n>0 params
`Calculator.make(fn)` works for functions with n>0 params
2 changes: 1 addition & 1 deletion .changeset/green-islands-matter.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@quri/squiggle-lang": patch
---

Expose `getFunctionDocumentation` function to render tooltips in the playground
Expose `getFunctionDocumentation` function to render documentatiton in the playground
5 changes: 0 additions & 5 deletions .changeset/hot-dancers-smoke.md

This file was deleted.

2 changes: 1 addition & 1 deletion .changeset/lovely-rocks-sip.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@quri/squiggle-components": patch
---

Tooltips on stdlib functions in editor
Tooltips and inline documentation for stdlib functions in editor
2 changes: 1 addition & 1 deletion .changeset/mighty-items-think.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@quri/squiggle-lang": patch
---

Breaking: Change rangeDomain({min,max}) to be rangeDomain(min, max)
Breaking: Change `Number.rangeDomain({min, max})` to be `rangeDomain(min, max)`
3 changes: 1 addition & 2 deletions .changeset/nervous-spies-thank.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
"@quri/prettier-plugin-squiggle": patch
"@quri/squiggle-lang": patch
---

Alias .make() methods to Module(). Changed formatter for pipe statements and newlines.
Alias `Module.make()` methods to `Module()`
9 changes: 5 additions & 4 deletions .changeset/next-release.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
"@quri/squiggle-lang": patch
"@quri/squiggle-components": patch
"@quri/prettier-plugin-squiggle": patch
"vscode-squiggle": patch
"@quri/squiggle-lang": minor
"@quri/squiggle-components": minor
"@quri/prettier-plugin-squiggle": minor
"vscode-squiggle": minor
"@quri/ui": minor
---
2 changes: 1 addition & 1 deletion .changeset/ninety-lions-do.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"@quri/squiggle-components": patch
---

Breaking: Removed `points(number)` from DistFn and NumericFn plots, replaces with `xPoints(number[])`.
Breaking: Removed `points(number)` from `Plot.distFn` and `Plot.numericFn` plots, replaced with`xPoints(number[])`.
2 changes: 1 addition & 1 deletion .changeset/orange-berries-search.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"@quri/ui": patch
---

Added 'log to console' and 'unfocus' SquiggleValueMenu items. Add window.squiggleOutput output for debugging.
Added `window.squiggleOutput` output for debugging
2 changes: 1 addition & 1 deletion .changeset/orange-jokes-dream.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@quri/squiggle-lang": patch
---

Added Dist.median, Number.quantile, Number.median
Added `Dist.median`, `Number.quantile`, `Number.median`
2 changes: 1 addition & 1 deletion .changeset/pink-onions-remember.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@quri/squiggle-lang": patch
---

Added data-first definitions for Plot.dist, Plot.numericFn, Plot.distFn, Table.make, Calculator.make. Deprecate old versions.
Added data-first definitions for `Plot.dist`, `Plot.dists`, `Plot.numericFn`, `Plot.distFn`, `Table.make`, `Calculator.make`. Deprecate old versions.
4 changes: 1 addition & 3 deletions .changeset/polite-rules-call.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
"@quri/squiggle-lang": patch
"@quri/squiggle-components": patch
---

Save FR function typings in squiggle-language, and display them in Components.
Breaking: Plot.scatter now only accepts scatterplots.
Breaking: `Plot.scatter` now only accepts sampleset distributions.
6 changes: 0 additions & 6 deletions .changeset/smooth-beds-hope.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thick-wolves-itch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wild-balloons-hope.md

This file was deleted.

0 comments on commit b5d1394

Please sign in to comment.