From b7a62eb06d6456e757b9d34f94426526ad7c47a9 Mon Sep 17 00:00:00 2001 From: Luis Padron Date: Mon, 18 Dec 2017 14:36:25 -0500 Subject: [PATCH] Update changelog and podspec --- CHANGELOG.md | 8 ++++++++ UIEmptyState.podspec | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dfe9fd6..e1c93e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # UIEmptyState CHANGELOG +## Version 3.1.0 + +- Added new `emptyStateImageViewTintColor`, which allows applying a tint color to the default `UIEmptyStateView`'s image view. +- Added new `emptyStateViewCenterYOffset`, which allows offsetting the vertical center position for the empty state view. +- Example project now uses local `UIEmptyState` pod, to allow for local development and easier testing. + +Changes made by: [gabmarfer](https://github.com/gabmarfer), thanks! + ## Version 3.0.0 - Fixed bug where `UIEmptyStateDataSource.emptyStateView` computed property and the the `UIViewController+UIEmptyState.emptyStateView` properties conflicted thus not allowing creation of custom view. diff --git a/UIEmptyState.podspec b/UIEmptyState.podspec index f4717a8..0a1f6a8 100644 --- a/UIEmptyState.podspec +++ b/UIEmptyState.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| s.name = "UIEmptyState" - s.version = "3.0.0" + s.version = "3.1.0" s.summary = "An empty state control to give visually appealing context when building iOS applications." s.description = <<-DESC Empty state control which gives context with either a message, image, and buttons to the user when ever there is a reason the state is empty.