Skip to content

Commit

Permalink
Release 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ivnsch committed Dec 4, 2017
1 parent e5f7c1f commit 5ab1a87
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 16 deletions.
20 changes: 9 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,30 +61,23 @@ Swift 4 - 1.2, iOS 11 - 7

Add to your Podfile:

Swift 4.x (master):
Swift 4.x:
```ruby
use_frameworks!
pod 'SwiftCharts', :git => 'https://github.com/i-schuetz/SwiftCharts.git'
pod 'SwiftCharts', '~> 0.6.1'
```

Swift 3.x:
```ruby
use_frameworks!
pod 'SwiftCharts', '~> 0.6'
pod 'SwiftCharts', '0.6'
```
Note: To use Swift 3.x, you need Xcode 8+

To use master directly:
```ruby
pod 'SwiftCharts', :git => 'https://github.com/i-schuetz/SwiftCharts.git'
```

Swift 2.3 (not actively maintained):
```ruby
use_frameworks!
pod 'SwiftCharts', '~> 0.4'
```

And then:
```ruby
pod install
Expand All @@ -99,9 +92,14 @@ import SwiftCharts

Add to your Cartfile:

Swift 4.x:
```
github "i-schuetz/SwiftCharts" ~> 0.6.1
```

Swift 3.x:
```
github "i-schuetz/SwiftCharts" ~> 0.6
github "i-schuetz/SwiftCharts" == 0.6
```

Swift 2.3 (not actively maintained):
Expand Down
4 changes: 2 additions & 2 deletions SwiftCharts.podspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Pod::Spec.new do |s|
s.name = "SwiftCharts"
s.version = "0.6"
s.version = "0.6.1"
s.summary = "Easy to use and highly customizable charts library for iOS"
s.homepage = "https://github.com/i-schuetz/SwiftCharts"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
s.authors = { "Ivan Schuetz" => "ivanschuetz@gmail.com"}
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/i-schuetz/SwiftCharts.git", :tag => '0.6'}
s.source = { :git => "https://github.com/i-schuetz/SwiftCharts.git", :tag => '0.6.1'}
s.source_files = 'SwiftCharts/*.swift', 'SwiftCharts/**/*.swift'
s.frameworks = "Foundation", "UIKit", "CoreGraphics"
end
6 changes: 3 additions & 3 deletions SwiftCharts.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@
TargetAttributes = {
06342AC01B8AAD7F001C9F5D = {
CreatedOnToolsVersion = 6.4;
DevelopmentTeam = UVC8J7YZXP;
DevelopmentTeam = 37QAPDY2PR;
LastSwiftMigration = 0800;
};
06405DA51B8AA74700A689FF = {
Expand Down Expand Up @@ -1376,7 +1376,7 @@
APPLICATION_EXTENSION_API_ONLY = NO;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
DEVELOPMENT_TEAM = UVC8J7YZXP;
DEVELOPMENT_TEAM = 37QAPDY2PR;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
Expand All @@ -1396,7 +1396,7 @@
APPLICATION_EXTENSION_API_ONLY = NO;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
DEVELOPMENT_TEAM = UVC8J7YZXP;
DEVELOPMENT_TEAM = 37QAPDY2PR;
INFOPLIST_FILE = "Examples/Supporting Files/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
Expand Down

0 comments on commit 5ab1a87

Please sign in to comment.