diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e18ee07..466df71 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.0" + ".": "0.1.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29..be3403f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1,17 @@ +# Changelog + +## 0.1.0 (2025-01-25) + + +### Features + +* Add baseUrl option to FetchMocker ([541a6bc](https://github.com/humanwhocodes/mentoss/commit/541a6bc872c80676298c049dd0dfa2130ea9e373)) +* Add MockServer#traceReceive() method ([1a77cf5](https://github.com/humanwhocodes/mentoss/commit/1a77cf599d653a55bb31a1d189a55eee60c9b185)) +* Add support for CORS requests ([#14](https://github.com/humanwhocodes/mentoss/issues/14)) ([b3d0323](https://github.com/humanwhocodes/mentoss/commit/b3d032321e1790b033bc567a098b7151ec80b403)) +* Add URL parameter matching ([8481d81](https://github.com/humanwhocodes/mentoss/commit/8481d816a67f5adeefff2b6e1d0200eb1f9aee8f)) +* Fetch Mocker cheks for partial matches ([d73d72c](https://github.com/humanwhocodes/mentoss/commit/d73d72c30e955edc2731743310630a2f3e7d2ceb)) + + +### Bug Fixes + +* **docs:** Update READMEs ([941b3d0](https://github.com/humanwhocodes/mentoss/commit/941b3d0861843ecec07e48f0da46c85c1c7691d5)) diff --git a/jsr.json b/jsr.json index 1c018c8..66a7427 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@humanwhocodes/mentoss", - "version": "0.0.0", + "version": "0.1.0", "exports": "./dist/index.js", "publish": { "include": [ diff --git a/package-lock.json b/package-lock.json index d7da041..300ea1f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mentoss", - "version": "0.0.0", + "version": "0.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "mentoss", - "version": "0.0.0", + "version": "0.1.0", "license": "Apache-2.0", "dependencies": { "urlpattern-polyfill": "^10.0.0" diff --git a/package.json b/package.json index 1f3759f..7ffdaf2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mentoss", - "version": "0.0.0", + "version": "0.1.0", "description": "A utility to mock fetch requests and responses.", "type": "module", "module": "dist/index.js",