Skip to content

Commit

Permalink
Bump version: 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
danielepantaleone committed Jun 16, 2023
1 parent 1b3aec0 commit e1a79f9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions DPCharts-Demo-iOS/DPCharts-Demo-iOS.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 3;
DEVELOPMENT_TEAM = "";
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = "DPCharts-Demo-iOS/Info.plist";
Expand All @@ -439,7 +439,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.1;
MARKETING_VERSION = 1.0.2;
PRODUCT_BUNDLE_IDENTIFIER = com.danielepantaleone.dpchartsdemo;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -455,7 +455,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 3;
DEVELOPMENT_TEAM = "";
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = "DPCharts-Demo-iOS/Info.plist";
Expand All @@ -470,7 +470,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.1;
MARKETING_VERSION = 1.0.2;
PRODUCT_BUNDLE_IDENTIFIER = com.danielepantaleone.dpchartsdemo;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
2 changes: 1 addition & 1 deletion DPCharts.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "DPCharts"
s.version = "1.0.1"
s.version = "1.0.2"
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"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ DPCharts can be installed on any platform that is compatible with it:
Add the dependency to the `DPCharts` framework in your `Podfile`:

```ruby
pod 'DPCharts', '~> 1.0.1'
pod 'DPCharts', '~> 1.0.2'
```

### Swift Package Manager
Expand All @@ -232,7 +232,7 @@ Add it as a dependency in a Swift Package:

```swift
dependencies: [
.package(url: "https://github.com/danielepantaleone/DPCharts.git", .upToNextMajor(from: "1.0.1"))
.package(url: "https://github.com/danielepantaleone/DPCharts.git", .upToNextMajor(from: "1.0.2"))
]
```

Expand Down

0 comments on commit e1a79f9

Please sign in to comment.