From 65eb53e925b8322554616b3d01387d8e4db0742d Mon Sep 17 00:00:00 2001 From: Justin Kolb Date: Thu, 21 Apr 2016 23:24:37 -0500 Subject: [PATCH] Update readme and version numbers for 1.3.2 --- FieryCrucible/Info.plist | 4 ++-- README.md | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/FieryCrucible/Info.plist b/FieryCrucible/Info.plist index 94e2f84..00b3e98 100644 --- a/FieryCrucible/Info.plist +++ b/FieryCrucible/Info.plist @@ -15,11 +15,11 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.3.1 + 1.3.2 CFBundleSignature ???? CFBundleVersion - 1.3.1 + 1.3.2 NSPrincipalClass diff --git a/README.md b/README.md index 6a6e870..f13633b 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,9 @@ A minimalist type safe Swift dependency injector factory. Where all true instanc #### Changelog +#####Version 1.3.2 +* Thanks to Tim Ward for updating code to support Swift 2.2. + #####Version 1.3.1 * There is a new form of each method where you are now able to set properties directly after initialization has occured in the factory parameter, this allows you to setup the object (with non-circular dependencies) before the object becomes available to other objects. See the updated example below.