diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..5f09444 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,17 @@ +# SwiftyAppearance Change Log + +## [Version 1.0.2](https://github.com/yannickl/AwaitKit/releases/tag/2.0.0) +*Released on 2016-11-27.* + +- added `UIView.refreshSubviewAppearance` and `UIApplication.refreshAppearance` methods to reload app look after changing `UIApperance` (useful for theme support) + +## [Version 1.0.1](https://github.com/yannickl/AwaitKit/releases/tag/1.0.0) +*Released on 2016-11-18.* + +- added `appearance(in:)` convenience method for single enclosing container case +- fixed bug when `UIAppearance.appearance` method familiy did not add `Self` in container chain of nested scope + +## [Version 1.0.0](https://github.com/yannickl/AwaitKit/releases/tag/1.0.0) +*Released on 2016-11-13.* + +- Initial release diff --git a/SwiftyAppearance.podspec b/SwiftyAppearance.podspec index 198c98d..6f06328 100644 --- a/SwiftyAppearance.podspec +++ b/SwiftyAppearance.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'SwiftyAppearance' - s.version = '1.0.1' + s.version = '1.0.2' s.summary = 'Declarative approach to UIAppearance.' s.description = <<-DESC diff --git a/SwiftyAppearance.xcodeproj/project.pbxproj b/SwiftyAppearance.xcodeproj/project.pbxproj index 69a5e5f..41bd5ac 100644 --- a/SwiftyAppearance.xcodeproj/project.pbxproj +++ b/SwiftyAppearance.xcodeproj/project.pbxproj @@ -54,6 +54,7 @@ /* Begin PBXFileReference section */ 57900E081DEB5F740067EF81 /* UIViewExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIViewExtensions.swift; sourceTree = ""; }; + 57900E0A1DEB5FDA0067EF81 /* CHANGELOG.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = CHANGELOG.md; sourceTree = ""; }; 57B3DEB51D8F3A6300699882 /* SwiftyAppearanceDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SwiftyAppearanceDemo.app; sourceTree = BUILT_PRODUCTS_DIR; }; 57B3DEB81D8F3A6300699882 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 57B3DEBA1D8F3A6300699882 /* FirstViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FirstViewController.swift; sourceTree = ""; }; @@ -161,8 +162,9 @@ 57FED3881D8F3BC5008DB72E /* Meta */ = { isa = PBXGroup; children = ( - 57FED3891D8F3BD5008DB72E /* LICENSE */, 57FED38A1D8F3BD5008DB72E /* README.md */, + 57900E0A1DEB5FDA0067EF81 /* CHANGELOG.md */, + 57FED3891D8F3BD5008DB72E /* LICENSE */, 57FED38B1D8F3BD5008DB72E /* SwiftyAppearance.podspec */, ); name = Meta;