diff --git a/DPCharts.podspec b/DPCharts.podspec index d8dbf01..5f26212 100755 --- a/DPCharts.podspec +++ b/DPCharts.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "DPCharts" - s.version = "1.2.0" + s.version = "1.2.1" s.summary = "A lightweight framework to render charts on iOS written in Swift" s.license = { :type => "MIT", :file => "LICENSE" } s.homepage = "https://github.com/danielepantaleone/DPCharts" diff --git a/README.md b/README.md index bbfca04..a696cff 100644 --- a/README.md +++ b/README.md @@ -234,7 +234,7 @@ heatmapView.yAxisInverted = false Add the dependency to the `DPCharts` framework in your `Podfile`: ```ruby -pod 'DPCharts', '~> 1.2.0' +pod 'DPCharts', '~> 1.2.1' ``` ### Swift Package Manager @@ -243,7 +243,7 @@ Add it as a dependency in a Swift Package: ```swift dependencies: [ - .package(url: "https://github.com/danielepantaleone/DPCharts.git", .upToNextMajor(from: "1.2.0")) + .package(url: "https://github.com/danielepantaleone/DPCharts.git", .upToNextMajor(from: "1.2.1")) ] ```