Skip to content

Commit

Permalink
prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ryansolid committed Dec 17, 2019
1 parent 1bb1068 commit 30c8999
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 0.15.0 - 2019-12-16
A lot fixes and new features:
* Suspense improvements: `SuspenseList`, `useTransition`, trigger on read. Update API, and added `reload` and retry capability. Removed need for `awaitSuspense` by making `Show` and `Switch` control flows `Susepnse` aware.
* Sample all Components. No more fear of nesting Components in JSX expressions. Top level in a Component will always be inert now.
* Support for safe boolean and logical operators. This allows for the same optimization as the `Show` control flow for simple inline JSX conditionals like `<div>{state.count > 5 && <MyComp />}</div>`.
* Removed `transform` from control flow. `selectWhen` and `selectEach` have been updated to more generalized `select` and `selectAll`, used off `forwardRef`.
* Support for non-curried operator forms. All operators now support an accessor first form as well as the functional curried form. Ex `map(() => state.list, item => item)`
* Fix issues with spreading over `children` props.
* Better Type Definitions.

## 0.14.0 - 2019-11-16
v0.14.0 brings changes to the render runtime and `setState` API

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "solid-js",
"description": "A declarative JavaScript library for building user interfaces.",
"version": "0.14.10",
"version": "0.15.0",
"author": "Ryan Carniato",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export {
getContextOwner
} from "./signal";

export { createState, unwrap, force, mutate } from "./state";
export { createState, unwrap, force } from "./state";

export { reconcile } from "./reconcile";

Expand Down

0 comments on commit 30c8999

Please sign in to comment.