From 9627e7d9f7cca6c8f9e6113bfa375b289fcd597c Mon Sep 17 00:00:00 2001 From: Alexander Harding Date: Sun, 24 May 2026 09:47:02 -0600 Subject: [PATCH 1/3] Fixed a typo in the ObserverConstructor new signature --- core/observer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/observer.ts b/core/observer.ts index 48c0a1b..c6a777e 100644 --- a/core/observer.ts +++ b/core/observer.ts @@ -34,7 +34,7 @@ export interface Observer { */ export interface ObserverConstructor { /** - * Creates and return an object that provides a standard way to [consume](https://jsr.io/@observable/core#consumer) + * Creates and returns an object that provides a standard way to [consume](https://jsr.io/@observable/core#consumer) * a sequence of values (either finite or infinite). * ```ts * import { Observer } from "@observable/core"; From ce2f7603f58a883a69d1e6856a949278eef282fd Mon Sep 17 00:00:00 2001 From: Alexander Harding Date: Sun, 24 May 2026 09:47:24 -0600 Subject: [PATCH 2/3] Polish the ObserverConstructor new signature --- core/observer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/observer.ts b/core/observer.ts index c6a777e..9aa1b2a 100644 --- a/core/observer.ts +++ b/core/observer.ts @@ -35,7 +35,7 @@ export interface Observer { export interface ObserverConstructor { /** * Creates and returns an object that provides a standard way to [consume](https://jsr.io/@observable/core#consumer) - * a sequence of values (either finite or infinite). + * a sequence of {@linkcode Value|values} (either finite or infinite). * ```ts * import { Observer } from "@observable/core"; * From 606c33002a15688d54d9fdf5cc9698e1e1cf44bf Mon Sep 17 00:00:00 2001 From: Alexander Harding Date: Sun, 24 May 2026 12:36:32 -0600 Subject: [PATCH 3/3] Core version bump --- core/deno.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/deno.json b/core/deno.json index af829f4..e338cbd 100644 --- a/core/deno.json +++ b/core/deno.json @@ -1,6 +1,6 @@ { "name": "@observable/core", - "version": "0.15.0", + "version": "0.16.0", "license": "MIT", "exports": "./mod.ts", "publish": { "exclude": ["*.test.ts"] }