Skip to content

Commit

Permalink
Update pod spec and changelog for new version
Browse files Browse the repository at this point in the history
  • Loading branch information
Pluto-Y committed Sep 6, 2016
1 parent a544355 commit 608fee3
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 4 deletions.
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
1.3.2 Release notes (2016-09-06)
============================================================

### Added
* Add some actions support
* Add some `add[Name]` and `add[Name]Arr` for some properties
* Add support for Mac
* Add support for themes

### Changed
* Changed the way of js call oc functions, by using iframe
* Changed the type of data in PYMarkPoint from NSArray into NSMutableArray
* Changed the name of constant in PYAxisPointer
* Changed type of options in `PYOption` into NSMutableArray

### Modify
* Rewrite some demo use new features
* Rewrite action by using iframe

1.3.1 Release notes (2016-08-30)
============================================================

Expand Down Expand Up @@ -81,4 +100,8 @@

* Add Radar and Map Demos
* Replace js files and support all echarts types
* Add PYZoomEchartsView
* Add PYZoomEchartsView




11 changes: 8 additions & 3 deletions iOS-Echarts.podspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
Pod::Spec.new do |s|
s.name = "iOS-Echarts"
s.version = "1.3.1"
s.version = "1.3.2"
s.summary = "A custom component for the ecomfe's echarts 2."
s.homepage = "https://github.com/Pluto-Y/iOS-Echarts"
s.license = { :type => "MIT", :file => 'LICENSE.md' }
s.author = { "PlutoY" => "[email protected]" }
s.platform = :ios, "7.0"
#s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/Pluto-Y/iOS-Echarts.git", :tag => s.version}
s.frameworks = 'UIKit'
s.source_files = "iOS-Echarts/**/*.{h,m}"
s.resource_bundles = { 'iOS-Echarts' => 'iOS-Echarts/Resources/**' }
s.prefix_header_contents = '#import "PYUtilities.h"'
s.requires_arc = true
s.ios.frameworks = 'UIKit'
s.osx.frameworks = 'AppKit', 'WebKit'

s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.9'

end

0 comments on commit 608fee3

Please sign in to comment.