From 943837bf9548a4e24fd661e868e2b7ce943f3cae Mon Sep 17 00:00:00 2001 From: 1024jp <1024jp@wolfrosch.com> Date: Wed, 7 Jun 2017 19:04:49 +0900 Subject: [PATCH] Dump version number to 4.0.0-beta --- .travis.yml | 2 +- CHANGELOG.md | 9 +++++++++ GzipSwift.podspec | 2 +- Project/Info.plist | 2 +- README.md | 4 ++-- Sources/Data+Gzip.swift | 1 - 6 files changed, 14 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 116ee33..fe6c33c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: objective-c -osx_image: xcode8.2 +osx_image: xcode9 matrix: include: diff --git a/CHANGELOG.md b/CHANGELOG.md index 4eec017..8d72322 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ Change Log ========================== +4.0.0-beta +-------------------------- + +### Changes + +- Update project for Xcode 9. + + + 3.1.4 -------------------------- diff --git a/GzipSwift.podspec b/GzipSwift.podspec index bb25efa..fd7d7e3 100644 --- a/GzipSwift.podspec +++ b/GzipSwift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "GzipSwift" - s.version = "3.1.4" + s.version = "4.0.0-beta" s.summary = "Swift framework that enables gzip/gunzip Data using zlib." s.homepage = "https://github.com/1024jp/GzipSwift" diff --git a/Project/Info.plist b/Project/Info.plist index a38c3b6..88a80c6 100644 --- a/Project/Info.plist +++ b/Project/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 3.1.4 + 4.0.0-beta CFBundleVersion $(CURRENT_PROJECT_VERSION) NSHumanReadableCopyright diff --git a/README.md b/README.md index 3081290..55a5f88 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ GzipSwift ======================== -[![Swift](https://img.shields.io/badge/Swift-3.0.1-blue.svg)]() +[![Swift](https://img.shields.io/badge/Swift-4.0.0-blue.svg)]() [![platform](https://img.shields.io/badge/platform-macOS%20|%20iOS%20|%20watchOS%20|%20tvOS%20|%20Linux-blue.svg)]() [![Carthage compatible](https://img.shields.io/badge/Carthage-✔-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) [![SPM compatible](https://img.shields.io/badge/SPM-✔-4BC51D.svg?style=flat)](https://swift.org/package-manager/) @@ -13,7 +13,7 @@ GzipSwift __GzipSwift__ is a framework with an extension of Data written in Swift. It enables compress/decompress gzip using zlib. - __Requirements__: OS X 10.9 / iOS 8 / watchOS 2 / tvOS 9 or later -- __Swift version__: Swift 3.0.1 +- __Swift version__: Swift 4.0.0 ## Usage diff --git a/Sources/Data+Gzip.swift b/Sources/Data+Gzip.swift index 65f0047..3551378 100644 --- a/Sources/Data+Gzip.swift +++ b/Sources/Data+Gzip.swift @@ -1,7 +1,6 @@ // // Data+Gzip.swift // -// Version 3.1.5 /* The MIT License (MIT)