diff --git a/CHANGELOG.md b/CHANGELOG.md index e0a414b5..fdd7983f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +## [6.2.0] + +### Added +- Added `interfaces.GetAllOptions`. + +### Changed +- Updated `container.getAll` with `options` optional param. +- Updated `container.getAllAsync` with `options` optional param. +- Updated `interfaces.NextArgs` with optional `isOptional` param. +- Updated `container` with `tryGet`. +- Updated `container` with `tryGetAsync`. +- Updated `container` with `tryGetTagged`. +- Updated `container` with `tryGetTaggedAsync`. +- Updated `container` with `tryGetNamed`. +- Updated `container` with `tryGetNamedAsync`. +- Updated `container` with `tryGetAll`. +- Updated `container` with `tryGetAllAsync`. +- Updated `container` with `tryGetAllTagged`. +- Updated `container` with `tryGetAllTaggedAsync`. +- Updated `container` with `tryGetAllNamed`. +- Updated `container` with `tryGetAllNamedAsync`. + ## [6.2.0-beta.1] ### Added diff --git a/package-lock.json b/package-lock.json index 9de9b080..eec4df4b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "inversify", - "version": "6.2.0-beta.1", + "version": "6.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "inversify", - "version": "6.2.0-beta.1", + "version": "6.2.0", "license": "MIT", "dependencies": { "@inversifyjs/common": "1.4.0", diff --git a/package.json b/package.json index 1e189815..52c48398 100644 --- a/package.json +++ b/package.json @@ -76,5 +76,5 @@ "test:cjs": "nyc --reporter=lcov mocha lib/cjs/test/*.test.js lib/cjs/test/**/*.test.js --reporter spec --require 'node_modules/reflect-metadata/Reflect.js'" }, "sideEffects": false, - "version": "6.2.0-beta.1" + "version": "6.2.0" }