Skip to content

Commit

Permalink
Update CHANGELOG for 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hmlongco committed Jul 1, 2022
1 parent e074788 commit 93a1aaf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Factory Changelog

### 1.1.0

* Adds ParameterFactory to provide type-safe argument passing

### 1.0.9

* Condition per-platform locking strategy
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Failure to find a matching type can lead to an application crash if we attempt t
* **Safe:** Factory is compile-time safe; a factory for a given type *must* exist or the code simply will not compile.
* **Flexible:** It's easy to override dependencies at runtime and for use in SwiftUI Previews.
* **Powerful:** Like Resolver, Factory supports application, cached, shared, and custom scopes, custom containers, arguments, decorators, and more.
* **Lightweight:** With all of that Factory is slim and trim, just 300 lines of code.
* **Lightweight:** With all of that Factory is slim and trim, barely 400 lines of code and half the size of Resolver.
* **Performant:** Little to no setup time is needed for the vast majority of your services, resolutions are extremely fast, and no compile-time scripts or build phases are needed.
* **Concise:** Defining a registration usually takes just a single line of code. Same for resolution.
* **Tested:** Unit tests ensure correct operation of registrations, resolutions, and scopes.
Expand Down

0 comments on commit 93a1aaf

Please sign in to comment.