diff --git a/.changeset/quiet-facts-kneel.md b/.changeset/quiet-facts-kneel.md deleted file mode 100644 index b91a5a3..0000000 --- a/.changeset/quiet-facts-kneel.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"monarch-orm": minor ---- - -Replace `createRelations` with `schema.withRelations` and support merging multiple relations per schema diff --git a/.changeset/small-aliens-return.md b/.changeset/small-aliens-return.md deleted file mode 100644 index ca28a6e..0000000 --- a/.changeset/small-aliens-return.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"monarch-orm": minor ---- - -Support splitting schemas by adding `defineSchemas` and `mergeSchema` functions which requires a `Schemas` class as argument to `createDatabase` diff --git a/CHANGELOG.md b/CHANGELOG.md index 28a0940..fafd5c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # monarch-orm +## 0.10.0 + +### Minor Changes + +- 742f147: Replace `createRelations` with `schema.withRelations` and support merging multiple relations per schema +- 742f147: Support splitting schemas by adding `defineSchemas` and `mergeSchema` functions which requires a `Schemas` class as argument to `createDatabase` + ## 0.9.0 ### Minor Changes diff --git a/package.json b/package.json index 6b6385d..9dd32cd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "monarch-orm", - "version": "0.9.0", + "version": "0.10.0", "description": "Type safe Object Document Mapper (ODM) for MongoDB", "private": false, "main": "./dist/index.cjs",