diff --git a/CHANGES.md b/CHANGES.md index b5cd03850..bb5b8e386 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,24 @@ # Changes +## 16.1.0 + +- [`cac5184b`](https://github.com/sinonjs/sinon/commit/cac5184b2a5c395e7e8775192ebcab234b6c180f) + Enable use of assignment in the presence of accessors (#2538) (Carl-Erik Kopseng) +- [`f8c20e54`](https://github.com/sinonjs/sinon/commit/f8c20e5414464cf36a1dd48845ff57bf4e87d158) + New article: making Sinon work with complex setups (#2540) (Carl-Erik Kopseng) + > Co-authored-by: Morgan Roderick > +- [`cb5b9621`](https://github.com/sinonjs/sinon/commit/cb5b96214891dcff0890f07d01fe6b7d1627e8cb) + Add NPM script 'dev-docs' and document its usage (Carl-Erik Kopseng) +- [`dd7c6091`](https://github.com/sinonjs/sinon/commit/dd7c6091f415f1f0129cb9673f79ad3e44eecd21) + Add a little update to contributing (Carl-Erik Kopseng) +- [`79acdf38`](https://github.com/sinonjs/sinon/commit/79acdf380af52a34847a4861e637f5738c4b39eb) + Move tool versions into single file at root (Carl-Erik Kopseng) +- [`03b1db50`](https://github.com/sinonjs/sinon/commit/03b1db50a1114b0e7ee5a26b0c813eda3fc54e07) + Expose Changelog page (#2550) (Carl-Erik Kopseng) +- [`e1c3dad2`](https://github.com/sinonjs/sinon/commit/e1c3dad21d3d7c18f23f014bd952b5e4136687cb) + Add section on tooling and recommend using ASDF for tool versioning (#2547) (Carl-Erik Kopseng) + _Released by [Carl-Erik Kopseng](https://github.com/fatso83) on 2023-10-05._ + ## 16.0.0 - [`c3396058`](https://github.com/sinonjs/sinon/commit/c339605834f6fd7ba3afdd179fff3a8544e62bd7) diff --git a/docs/_config.yml b/docs/_config.yml index ba3e47628..0cb2ff8ef 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -5,7 +5,7 @@ description: >- url: 'https://sinonjs.org' github_username: sinonjs sinon: - current_release: v16.0.0 + current_release: v16.1.0 current_major_version: 16 markdown: kramdown kramdown: diff --git a/docs/changelog.md b/docs/changelog.md index e077cae92..c0d231c46 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -6,6 +6,25 @@ permalink: /releases/changelog # Changelog +## 16.1.0 + +- [`cac5184b`](https://github.com/sinonjs/sinon/commit/cac5184b2a5c395e7e8775192ebcab234b6c180f) + Enable use of assignment in the presence of accessors (#2538) (Carl-Erik Kopseng) +- [`f8c20e54`](https://github.com/sinonjs/sinon/commit/f8c20e5414464cf36a1dd48845ff57bf4e87d158) + New article: making Sinon work with complex setups (#2540) (Carl-Erik Kopseng) + > Co-authored-by: Morgan Roderick > +- [`cb5b9621`](https://github.com/sinonjs/sinon/commit/cb5b96214891dcff0890f07d01fe6b7d1627e8cb) + Add NPM script 'dev-docs' and document its usage (Carl-Erik Kopseng) +- [`dd7c6091`](https://github.com/sinonjs/sinon/commit/dd7c6091f415f1f0129cb9673f79ad3e44eecd21) + Add a little update to contributing (Carl-Erik Kopseng) +- [`79acdf38`](https://github.com/sinonjs/sinon/commit/79acdf380af52a34847a4861e637f5738c4b39eb) + Move tool versions into single file at root (Carl-Erik Kopseng) +- [`03b1db50`](https://github.com/sinonjs/sinon/commit/03b1db50a1114b0e7ee5a26b0c813eda3fc54e07) + Expose Changelog page (#2550) (Carl-Erik Kopseng) +- [`e1c3dad2`](https://github.com/sinonjs/sinon/commit/e1c3dad21d3d7c18f23f014bd952b5e4136687cb) + Add section on tooling and recommend using ASDF for tool versioning (#2547) (Carl-Erik Kopseng) + _Released by [Carl-Erik Kopseng](https://github.com/fatso83) on 2023-10-05._ + ## 16.0.0 - [`c3396058`](https://github.com/sinonjs/sinon/commit/c339605834f6fd7ba3afdd179fff3a8544e62bd7) @@ -37,9 +56,10 @@ _Released by Morgan Roderick on 2023-09-13._ > - Support callable instances > > - Clean prettier lint - -_Released by [Carl-Erik Kopseng](https://github.com/fatso83) on 2023-06-20._ - + > + > *** + > + > Co-authored-by: - <-> - [`d220c995`](https://github.com/sinonjs/sinon/commit/d220c99516ddb644d3702b4736bdfd311a2b05ec) fix: bundling compatibility with webpack@5 (#2519) (Avi Vahl) > - fix: bundling compatibility with webpack@5 diff --git a/package-lock.json b/package-lock.json index f71af01a6..d9fd98668 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "sinon", - "version": "16.0.0", + "version": "16.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "sinon", - "version": "16.0.0", + "version": "16.1.0", "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^3.0.0", diff --git a/package.json b/package.json index 6cead1dbf..f97c4b073 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "xhr", "assert" ], - "version": "16.0.0", + "version": "16.1.0", "homepage": "https://sinonjs.org/", "author": "Christian Johansen", "repository": {