Skip to content

Commit

Permalink
Release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
segiddins committed Jan 10, 2017
1 parent eef1b52 commit 2d2391c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SSDynamicText CHANGELOG

## ?.?.?
###### ?
## 1.1.1
###### January 8, 2016

- **(fixed)** Fixed memory leak caused by strong retain cycle in `SSDynamicLabel`, `SSDynamicTextView` and `SSDynamicTextField` classes, [#40](https://github.com/splinesoft/SSDynamicText/issues/40). _([Grubas7](https://github.com/Grubas7))_

Expand Down
6 changes: 3 additions & 3 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- OCMock (3.1.5)
- SSDynamicText (1.1.0)
- SSDynamicText (1.1.1)

DEPENDENCIES:
- OCMock (~> 3)
Expand All @@ -12,8 +12,8 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
OCMock: 4c2925291f80407c3738dd1db14d21d0cc278864
SSDynamicText: e5a1d15b757814a78508de4aeb73cdd287948cfe
SSDynamicText: e8700de63e0006e4438b235c38ffaa42aae227a8

PODFILE CHECKSUM: 0e12a41ac296d50b08c14cb165dbb2d8a85fb3ae

COCOAPODS: 1.0.1
COCOAPODS: 1.1.1
4 changes: 2 additions & 2 deletions Example/SSDynamicTextExample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
showEnvVarsInLog = 0;
};
EB6F676944BE6E9D3543D151 /* [CP] Check Pods Manifest.lock */ = {
Expand All @@ -376,7 +376,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
showEnvVarsInLog = 0;
};
FC932F9DD8127662F810E588 /* [CP] Embed Pods Frameworks */ = {
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ Xcode 7.0+ with iOS 7.0+ SDK.
Add to your `Podfile`:

```ruby
pod 'SSDynamicText', '~> 1.0.0'
pod 'SSDynamicText', '~> 1.1.1'
```

### [Carthage](https://github.com/Carthage/Carthage)
Add to your `Cartfile`:

```ruby
github "splinesoft/SSDynamicText", ~> 1.1.0
github "splinesoft/SSDynamicText", ~> 1.1.1
```

## Example usage
Expand Down
2 changes: 1 addition & 1 deletion SSDynamicText.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SSDynamicText'
s.version = '1.1.0'
s.version = '1.1.1'
s.summary = "UILabel/UIButton/UITextField/UITextView subclasses that support custom fonts with iOS 7's dynamic text sizes."
s.homepage = 'https://github.com/splinesoft/SSDynamicText'
s.license = { type: 'MIT', file: 'LICENSE' }
Expand Down
2 changes: 1 addition & 1 deletion SSDynamicText/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.1.0</string>
<string>1.1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 2d2391c

Please sign in to comment.