diff --git a/.changeset/olive-doodles-fix.md b/.changeset/olive-doodles-fix.md deleted file mode 100644 index 85ff0f3..0000000 --- a/.changeset/olive-doodles-fix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@eventkit/base": minor ---- - -Introduces **10** new operators into eventkit: `find`, `findIndex`, `first`, `isEmpty`, `last`, `max`, `min`, `pairwise`, `skip`, and `every`. See the [docs](https://hntrl.github.io/eventkit/guide/concepts/transforming-data#available-operators) for a complete reference. diff --git a/.changeset/sad-radios-rhyme.md b/.changeset/sad-radios-rhyme.md deleted file mode 100644 index e700b8a..0000000 --- a/.changeset/sad-radios-rhyme.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@eventkit/base": patch ---- - -Fixed some invariant behavior with the `reduce` operator where the chain of accumulator calls depending on the seed value wasn't consistent with the native array method diff --git a/packages/async-observable/CHANGELOG.md b/packages/async-observable/CHANGELOG.md index 234acbb..87f175e 100644 --- a/packages/async-observable/CHANGELOG.md +++ b/packages/async-observable/CHANGELOG.md @@ -1,10 +1,14 @@ # @eventkit/async-observable +## 0.3.0 + +Version bumped to match the version of `@eventkit/base` + ## 0.2.0 ### Patch Changes -- [`fa3aa52`](https://github.com/hntrl/eventkit/commit/fa3aa52410d95dbe79f093f6bd992b800d4768f2) Thanks [@hntrl](https://github.com/hntrl)! - Fixes an issue where subscribers wouldn't be tracked by the observable when using constructor syntax +- [`fa3aa52`](https://github.com/hntrl/eventkit/commit/fa3aa52410d95dbe79f093f6bd992b800d4768f2) - Fixes an issue where subscribers wouldn't be tracked by the observable when using constructor syntax ## 0.1.1 diff --git a/packages/async-observable/package.json b/packages/async-observable/package.json index c8104ed..02d3df1 100644 --- a/packages/async-observable/package.json +++ b/packages/async-observable/package.json @@ -1,6 +1,6 @@ { "name": "@eventkit/async-observable", - "version": "0.2.0", + "version": "0.3.0", "license": "MIT", "author": "Hunter Lovell ", "repository": { diff --git a/packages/eventkit-http/CHANGELOG.md b/packages/eventkit-http/CHANGELOG.md index 8976d22..bfce796 100644 --- a/packages/eventkit-http/CHANGELOG.md +++ b/packages/eventkit-http/CHANGELOG.md @@ -1,5 +1,12 @@ # @eventkit/http +## 0.3.0 + +### Patch Changes + +- Updated dependencies [[`03fb5d1`](https://github.com/hntrl/eventkit/commit/03fb5d13a3370d5164cf81527710c25c4e67e3e5), [`7b6dbb1`](https://github.com/hntrl/eventkit/commit/7b6dbb1a1d96478fcc25c8325648c31d08e78467)]: + - @eventkit/base@0.3.0 + ## 0.2.0 ### Patch Changes diff --git a/packages/eventkit-http/package.json b/packages/eventkit-http/package.json index 1281143..6426622 100644 --- a/packages/eventkit-http/package.json +++ b/packages/eventkit-http/package.json @@ -1,6 +1,6 @@ { "name": "@eventkit/http", - "version": "0.2.0", + "version": "0.3.0", "license": "MIT", "author": "Hunter Lovell ", "description": "HTTP helpers for eventkit", diff --git a/packages/eventkit/CHANGELOG.md b/packages/eventkit/CHANGELOG.md index d4f5dbe..bbaf034 100644 --- a/packages/eventkit/CHANGELOG.md +++ b/packages/eventkit/CHANGELOG.md @@ -1,5 +1,18 @@ # eventkit +## 0.3.0 + +### Minor Changes + +- [#6](https://github.com/hntrl/eventkit/pull/6) [`03fb5d1`](https://github.com/hntrl/eventkit/commit/03fb5d13a3370d5164cf81527710c25c4e67e3e5) Thanks [@hntrl](https://github.com/hntrl)! - Introduces **10** new operators into eventkit: `find`, `findIndex`, `first`, `isEmpty`, `last`, `max`, `min`, `pairwise`, `skip`, and `every`. See the [docs](https://hntrl.github.io/eventkit/guide/concepts/transforming-data#available-operators) for a complete reference. + +### Patch Changes + +- [#6](https://github.com/hntrl/eventkit/pull/6) [`7b6dbb1`](https://github.com/hntrl/eventkit/commit/7b6dbb1a1d96478fcc25c8325648c31d08e78467) Thanks [@hntrl](https://github.com/hntrl)! - Fixed some invariant behavior with the `reduce` operator where the chain of accumulator calls depending on the seed value wasn't consistent with the native array method + +- Updated dependencies []: + - @eventkit/async-observable@0.3.0 + ## 0.2.0 ### Minor Changes diff --git a/packages/eventkit/package.json b/packages/eventkit/package.json index 30f2957..6385843 100644 --- a/packages/eventkit/package.json +++ b/packages/eventkit/package.json @@ -1,6 +1,6 @@ { "name": "@eventkit/base", - "version": "0.2.0", + "version": "0.3.0", "license": "MIT", "author": "Hunter Lovell ", "description": "Declarative event stream processing library",