diff --git a/.changeset/breezy-cheetahs-juggle.md b/.changeset/breezy-cheetahs-juggle.md deleted file mode 100644 index c2ce18d..0000000 --- a/.changeset/breezy-cheetahs-juggle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"effect-mongodb": patch ---- - -Add dropIndex function in Collection and DocumentCollection diff --git a/.changeset/dull-icons-nail.md b/.changeset/dull-icons-nail.md deleted file mode 100644 index f7b6697..0000000 --- a/.changeset/dull-icons-nail.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"effect-mongodb": patch ---- - -Add createIndex function in Collection and DocumentCollection diff --git a/.changeset/shaggy-bats-smell.md b/.changeset/shaggy-bats-smell.md deleted file mode 100644 index 1cee9ef..0000000 --- a/.changeset/shaggy-bats-smell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"effect-mongodb": patch ---- - -Add findOneAndReplace function in Collection and DocumentCollection diff --git a/.changeset/shiny-tables-decide.md b/.changeset/shiny-tables-decide.md deleted file mode 100644 index ff363ea..0000000 --- a/.changeset/shiny-tables-decide.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"effect-mongodb": patch ---- - -Use Filter type in FindCursor and DocumentFindCursor filter function. -Add optional filter parameter to find functions in Collection and DocumentCollection diff --git a/.changeset/two-scissors-impress.md b/.changeset/two-scissors-impress.md deleted file mode 100644 index 0779c33..0000000 --- a/.changeset/two-scissors-impress.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"effect-mongodb": patch ---- - -Add drop function in Collection and DocumentCollection diff --git a/packages/effect-mongodb/CHANGELOG.md b/packages/effect-mongodb/CHANGELOG.md index 73892d8..de6ef2a 100644 --- a/packages/effect-mongodb/CHANGELOG.md +++ b/packages/effect-mongodb/CHANGELOG.md @@ -1,5 +1,20 @@ # effect-mongodb +## 0.0.4 + +### Patch Changes + +- [`a8530e7`](https://github.com/doubleloop-io/effect-mongodb/commit/a8530e703a9b065f660f31db5cf9ea9dca12bd69) Thanks [@devmatteini](https://github.com/devmatteini)! - Add dropIndex function in Collection and DocumentCollection + +- [`6cc9c61`](https://github.com/doubleloop-io/effect-mongodb/commit/6cc9c6108cab2d4c8ed2555fb603df5791f75f1c) Thanks [@devmatteini](https://github.com/devmatteini)! - Add createIndex function in Collection and DocumentCollection + +- [`16c906a`](https://github.com/doubleloop-io/effect-mongodb/commit/16c906af4ef5afc5b62522c73c9f571176ee5048) Thanks [@devmatteini](https://github.com/devmatteini)! - Add findOneAndReplace function in Collection and DocumentCollection + +- [`6f0a8d4`](https://github.com/doubleloop-io/effect-mongodb/commit/6f0a8d4404a74238fbc901fae5a212c1c7c6b2bc) Thanks [@devmatteini](https://github.com/devmatteini)! - Use Filter type in FindCursor and DocumentFindCursor filter function. + Add optional filter parameter to find functions in Collection and DocumentCollection + +- [`d50d85d`](https://github.com/doubleloop-io/effect-mongodb/commit/d50d85db297b5d6e8e4b7db2f151c64bf9ac3c9e) Thanks [@devmatteini](https://github.com/devmatteini)! - Add drop function in Collection and DocumentCollection + ## 0.0.3 ### Patch Changes diff --git a/packages/effect-mongodb/package.json b/packages/effect-mongodb/package.json index 109b883..4802bbc 100644 --- a/packages/effect-mongodb/package.json +++ b/packages/effect-mongodb/package.json @@ -1,7 +1,7 @@ { "name": "effect-mongodb", "author": "doubleloop.io", - "version": "0.0.3", + "version": "0.0.4", "type": "module", "license": "MIT", "description": "A MongoDB toolkit for Effect", diff --git a/packages/effect-mongodb/src/internal/version.ts b/packages/effect-mongodb/src/internal/version.ts index ca06046..f2a6206 100644 --- a/packages/effect-mongodb/src/internal/version.ts +++ b/packages/effect-mongodb/src/internal/version.ts @@ -1,4 +1,4 @@ -let moduleVersion = "0.0.3" +let moduleVersion = "0.0.4" export const getCurrentVersion = () => moduleVersion