Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions GraphKit.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |s|
s.name = "GraphKit"
s.version = "1.1.0"
s.version = "1.1.1"
s.summary = "A lightweight library of animated charts for iOS."
s.homepage = "https://github.com/michalkonturek/GraphKit"
s.license = 'MIT'
Expand All @@ -15,7 +15,7 @@ Pod::Spec.new do |s|
s.social_media_url = 'https://twitter.com/michalkonturek'
s.source = {
:git => "https://github.com/michalkonturek/GraphKit.git",
:tag => "1.1.0"
:tag => s.version.to_s
}

s.source_files = 'Source/**/*.{h,m}'
Expand Down
2 changes: 1 addition & 1 deletion Source/BarGraph/GKBarGraph.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
@property (nonatomic, assign) BOOL animated;
@property (nonatomic, assign) CFTimeInterval animationDuration;

@property (nonatomic, assign) id<GKBarGraphDataSource> dataSource;
@property (nonatomic, weak) IBOutlet id<GKBarGraphDataSource> dataSource;

@property (nonatomic, strong) NSArray *bars;
@property (nonatomic, strong) NSArray *labels;
Expand Down
2 changes: 1 addition & 1 deletion Source/LineGraph/GKLineGraph.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
@property (nonatomic, assign) BOOL animated;
@property (nonatomic, assign) CFTimeInterval animationDuration;

@property (nonatomic, assign) id<GKLineGraphDataSource> dataSource;
@property (nonatomic, weak) IBOutlet id<GKLineGraphDataSource> dataSource;

@property (nonatomic, assign) CGFloat lineWidth;
@property (nonatomic, assign) CGFloat margin;
Expand Down