Skip to content

Commit

Permalink
bump minor version to 0.4.0.
Browse files Browse the repository at this point in the history
other changes:
- export the newly added dynamic collection signals #9 in `/src/collection_signal.ts`, to `/src/mod.ts` and `/deno.json`.
- in `/readme.md`, fix a missing directed edge arrow (F -> I) in the mermaid diagram.
  this was pointed out to me by Abu.
  • Loading branch information
omar-azmi committed Jun 17, 2024
1 parent a82de33 commit a8f68e8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oazmi/tsignal",
"version": "0.3.2",
"version": "0.4.0",
"description": "a topological order respecting signals library inspired by SolidJS",
"author": "Omar Azmi",
"license": "Anti-Competition License",
Expand All @@ -14,6 +14,7 @@
"exports": {
".": "./src/mod.ts",
"./async_signal": "./src/async_signal.ts",
"./collection_signal": "./src/collection_signal.ts",
"./context": "./src/context.ts",
"./funcdefs": "./src/funcdefs.ts",
"./record_signal": "./src/record_signal.ts",
Expand Down
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ flowchart LR
562158 --> 270457
763885 --> 270457
932932 --> 270457
270457 --> 450102
450102 --> 770803(("J"))
```

Expand Down
2 changes: 2 additions & 0 deletions src/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
*/

export { AsyncStateSignal_Factory } from "./async_signal.ts"
export { CollectionSignal_Factory, ListCollection, ListSignal_Factory, UnisetCollection, UnisetSignal_Factory } from "./collection_signal.ts"
export type { CollectionSignalConfig } from "./collection_signal.ts"
export { Context } from "./context.ts"
export type { Context_Batch, Context_Dynamic } from "./context.ts"
export { default_equality, falsey_equality, throttlingEquals } from "./funcdefs.ts"
Expand Down

0 comments on commit a8f68e8

Please sign in to comment.