From 3cc7aa06b69fba27efd3d2f2c6cbb288ab249544 Mon Sep 17 00:00:00 2001 From: Frederik Wessberg Date: Thu, 7 Apr 2022 16:39:46 +0200 Subject: [PATCH] 2.1.0 --- CHANGELOG.md | 10 ++++++++++ README.md | 6 ++++++ package.json | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..6d445d9 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,10 @@ +# 2.1.0 (2022-04-07) + +### Bug Fixes + +- don't run tests with np ([0ec8060](https://github.com/wessberg/di/commit/0ec80603e77c161589fe64bbe265db449d401c41)) + +### Features + +- **api:** API overhaul ([5903e85](https://github.com/wessberg/di/commit/5903e8520730951484bddbeac1759e4a297e9e8c)) +- update development dependencies. Update documentation. Produce cleaner output. More informative error descriptions ([7b19929](https://github.com/wessberg/di/commit/7b199295e8d87b83387fc1a2c448fc4431622dfe)) diff --git a/README.md b/README.md index c3073c3..3e3e6da 100644 --- a/README.md +++ b/README.md @@ -67,9 +67,15 @@ This library is a runtime dependency, but you need to transform your code with t - [Yarn](#yarn) - [pnpm](#pnpm) - [Usage](#usage) + - [Registering services](#registering-services) + - [Retrieving instances of services](#retrieving-instances-of-services) + - [Injecting instances of services into classes](#injecting-instances-of-services-into-classes) + - [Getting instances directly from the `DIContainer`](#getting-instances-directly-from-the-dicontainer) - [Contributing](#contributing) - [Maintainers](#maintainers) - [FAQ](#faq) + - [This is pure magic. How does it work?](#this-is-pure-magic-how-does-it-work) + - [Is it possible to have multiple, scoped containers?](#is-it-possible-to-have-multiple-scoped-containers) - [License](#license) diff --git a/package.json b/package.json index e847a5f..d761d3d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@wessberg/di", - "version": "2.0.3", + "version": "2.1.0", "description": "A compile-time powered Dependency-Injection container for Typescript that holds services and can produce instances of them as required.", "scripts": { "generate:sandhog": "sandhog all --yes",