Skip to content

Commit

Permalink
Bump to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ephread committed Jun 6, 2021
1 parent c470445 commit 0031e6d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Important changes to Instructions will be documented in this file.
Instructions follows [Semantic Versioning](http://semver.org/).

## [2.0.2](https://github.com/ephread/Instructions/releases/tag/2.0.2)
## [2.1.0](https://github.com/ephread/Instructions/releases/tag/2.1.0)
Released on 2021-06-XX.

### Added
Expand Down
2 changes: 1 addition & 1 deletion Instructions.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Pod::Spec.new do |spec|
spec.cocoapods_version = '>= 1.0'

spec.name = "Instructions"
spec.version = "2.0.1"
spec.version = "2.1.0"
spec.summary = "Create walkthroughs and guided tours (with coach marks) in a simple way, using Swift."
spec.homepage = "https://github.com/ephread/Instructions"
spec.license = 'MIT'
Expand Down
8 changes: 4 additions & 4 deletions Instructions.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 2.0.1;
MARKETING_VERSION = 2.1.0;
OTHER_SWIFT_FLAGS = "-DINSTRUCTIONS_APP_EXTENSIONS";
PRODUCT_BUNDLE_IDENTIFIER = com.ephread.Instructions.AppExtensions;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -778,7 +778,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 2.0.1;
MARKETING_VERSION = 2.1.0;
OTHER_SWIFT_FLAGS = "-DINSTRUCTIONS_APP_EXTENSIONS";
PRODUCT_BUNDLE_IDENTIFIER = com.ephread.Instructions.AppExtensions;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -929,7 +929,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 2.0.1;
MARKETING_VERSION = 2.1.0;
OTHER_SWIFT_FLAGS = "";
PRODUCT_BUNDLE_IDENTIFIER = com.ephread.Instructions;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -958,7 +958,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 2.0.1;
MARKETING_VERSION = 2.1.0;
OTHER_SWIFT_FLAGS = "";
PRODUCT_BUNDLE_IDENTIFIER = com.ephread.Instructions;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
2 changes: 1 addition & 1 deletion InstructionsAppExtensions.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Pod::Spec.new do |spec|
spec.cocoapods_version = '>= 1.0'

spec.name = "InstructionsAppExtensions"
spec.version = "2.0.1"
spec.version = "2.1.0"
spec.summary = "[App Extensions Version] Create walkthroughs and guided tours (with coach marks) in a simple way, using Swift."
spec.homepage = "https://github.com/ephread/Instructions"
spec.license = 'MIT'
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!

pod 'Instructions', '~> 2.0.1'
pod 'Instructions', '~> 2.1.0'
```

Then, run the following command:
Expand All @@ -88,7 +88,7 @@ $ pod install
Add Instructions to your Cartfile:

```
github "ephread/Instructions" ~> 2.0.1
github "ephread/Instructions" ~> 2.1.0
```

You can then update, build and drag the generated framework into your project:
Expand Down Expand Up @@ -594,11 +594,11 @@ like this:

```ruby
target 'Instructions App Extensions Example' do
pod 'Instructions', '~> 2.0.1'
pod 'Instructions', '~> 2.1.0'
end

target 'Keyboard Extension' do
pod 'InstructionsAppExtensions', '~> 2.0.1'
pod 'InstructionsAppExtensions', '~> 2.1.0'
end
```

Expand Down

0 comments on commit 0031e6d

Please sign in to comment.