diff --git a/CHANGELOG.md b/CHANGELOG.md index 2660e88..1ed60b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Change Log #### 1.x Releases -- `1.0.x` Releases - [1.0.0](#100) +- `1.0.x` Releases - [1.0.0](#100) | [1.0.1](#101) #### 0.x Releases - `0.1.x` Releases - [0.1.0](#010) | [0.1.1](#011) | [0.1.2](#012) | [0.1.3](#013) | [0.1.4](#014) | [0.1.5](#015) | [0.1.6](#016) @@ -9,6 +9,13 @@ --- +## [1.0.1](https://github.com/LeonardoCardoso/Swift-Link-Preview/releases/tag/1.0.1) +Released on 2016-09-17. + +#### Added +- Compatibility with Obj-C. + - Added by [Leonardo Cardoso](https://github.com/LeonardoCardoso). + ## [1.0.0](https://github.com/LeonardoCardoso/Swift-Link-Preview/releases/tag/1.0.0) Released on 2016-09-14. @@ -16,6 +23,8 @@ Released on 2016-09-14. - Major Version 1.0.0 with Swift 3.0. - Added by [Leonardo Cardoso](https://github.com/LeonardoCardoso). +


+ ## [0.1.6](https://github.com/LeonardoCardoso/Swift-Link-Preview/releases/tag/0.1.6) Released on 2016-09-04. diff --git a/README.md b/README.md index 4dfa925..8b95bfb 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ It makes a preview from an URL, grabbing all the information such as title, rele

[![Platform](https://img.shields.io/badge/platform-iOS%20|%20macOS%20|%20watchOS%20|%20tvOS-orange.svg)](https://github.com/LeonardoCardoso/SwiftLinkPreview#requirements-and-details) - [![CocoaPods](https://img.shields.io/badge/pod-v1.0.0-red.svg)](https://github.com/LeonardoCardoso/SwiftLinkPreview#cocoapods) + [![CocoaPods](https://img.shields.io/badge/pod-v1.0.1-red.svg)](https://github.com/LeonardoCardoso/SwiftLinkPreview#cocoapods) [![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg)](https://github.com/LeonardoCardoso/SwiftLinkPreview#carthage) [![Swift Package Manager](https://img.shields.io/badge/SPM-compatible-orange.svg)](https://github.com/LeonardoCardoso/SwiftLinkPreview#swift-package-manager) [![Build Status](https://travis-ci.org/LeonardoCardoso/SwiftLinkPreview.svg?branch=master)](https://travis-ci.org/LeonardoCardoso/SwiftLinkPreview) @@ -70,7 +70,7 @@ To use **SwiftLinkPreview** as a pod package just add the following in your **Po target 'Your Target Name' do use_frameworks! // ... - pod 'SwiftLinkPreview', '~> 1.0.0' + pod 'SwiftLinkPreview', '~> 1.0.1' // ... end ``` @@ -81,7 +81,7 @@ To use **SwiftLinkPreview** as a Carthage module package just add the following ```ruby // ... - github "LeonardoCardoso/SwiftLinkPreview" ~> 1.0.0 + github "LeonardoCardoso/SwiftLinkPreview" ~> 1.0.1 // ... ``` @@ -96,7 +96,7 @@ let package = Package( name: "Your Target Name", dependencies: [ // ... - .Package(url: "https://github.com/LeonardoCardoso/SwiftLinkPreview.git", "1.0.0") + .Package(url: "https://github.com/LeonardoCardoso/SwiftLinkPreview.git", "1.0.1") // ... ] ) diff --git a/Sources/Info-macOS.plist b/Sources/Info-macOS.plist index 7c1a43c..9028652 100644 --- a/Sources/Info-macOS.plist +++ b/Sources/Info-macOS.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.0.0 + 1.0.1 CFBundleSignature ???? CFBundleVersion diff --git a/Sources/Info-tvOS.plist b/Sources/Info-tvOS.plist index 60b9c00..7a84553 100644 --- a/Sources/Info-tvOS.plist +++ b/Sources/Info-tvOS.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.0.0 + 1.0.1 CFBundleSignature ???? CFBundleVersion diff --git a/Sources/Info-watchOS.plist b/Sources/Info-watchOS.plist index 60b9c00..7a84553 100644 --- a/Sources/Info-watchOS.plist +++ b/Sources/Info-watchOS.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.0.0 + 1.0.1 CFBundleSignature ???? CFBundleVersion diff --git a/Sources/Info.plist b/Sources/Info.plist index 60b9c00..7a84553 100644 --- a/Sources/Info.plist +++ b/Sources/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.0.0 + 1.0.1 CFBundleSignature ???? CFBundleVersion diff --git a/SwiftLinkPreview.podspec b/SwiftLinkPreview.podspec index 46aa575..f774c6d 100755 --- a/SwiftLinkPreview.podspec +++ b/SwiftLinkPreview.podspec @@ -7,11 +7,11 @@ Pod::Spec.new do |s| s.name = "SwiftLinkPreview" s.summary = "It makes a preview from an url, grabbing all the information such as title, relevant texts and images." s.requires_arc = true - s.version = "1.0.0" + s.version = "1.0.1" s.license = { :type => "MIT", :file => "LICENSE" } s.author = { "Leonardo Cardoso" => "contact@leocardz.com" } s.homepage = "https://github.com/LeonardoCardoso/SwiftLinkPreview" s.source = { :git => "https://github.com/LeonardoCardoso/SwiftLinkPreview.git", :tag => s.version } s.source_files = "Sources/**/*.swift" -end \ No newline at end of file +end diff --git a/SwiftLinkPreviewTests/Info-macOS.plist b/SwiftLinkPreviewTests/Info-macOS.plist index a30f7d0..07841bd 100644 --- a/SwiftLinkPreviewTests/Info-macOS.plist +++ b/SwiftLinkPreviewTests/Info-macOS.plist @@ -15,7 +15,7 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 1.0.0 + 1.0.1 CFBundleSignature ???? CFBundleVersion diff --git a/SwiftLinkPreviewTests/Info-tvOS.plist b/SwiftLinkPreviewTests/Info-tvOS.plist index a30f7d0..07841bd 100644 --- a/SwiftLinkPreviewTests/Info-tvOS.plist +++ b/SwiftLinkPreviewTests/Info-tvOS.plist @@ -15,7 +15,7 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 1.0.0 + 1.0.1 CFBundleSignature ???? CFBundleVersion diff --git a/SwiftLinkPreviewTests/Info.plist b/SwiftLinkPreviewTests/Info.plist index a30f7d0..07841bd 100644 --- a/SwiftLinkPreviewTests/Info.plist +++ b/SwiftLinkPreviewTests/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 1.0.0 + 1.0.1 CFBundleSignature ???? CFBundleVersion diff --git a/update-version.sh b/update-version.sh new file mode 100755 index 0000000..0c51d0f --- /dev/null +++ b/update-version.sh @@ -0,0 +1,3 @@ +grep -rl '1\.0\.0' . --exclude-dir={"Build","libs","Pods",".git"} --exclude={"Podfile.lock","CHANGELOG.md","update-version.sh"} | xargs sed -i.bak 's/1\.0\.0/1\.0\.1/g'; + +find . -type f -name '*.bak' -delete \ No newline at end of file