Skip to content

Commit

Permalink
Release v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
duartepinto committed Sep 10, 2020
1 parent 146b28d commit 3f56da6
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 14 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ nd this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.
### Added

### Changed
- Use version number instead of build number for the User-Agent ([#33](https://github.com/velocidi/velocidi-ios-objc-sdk/pull/33)).

### Deprecated

Expand All @@ -22,6 +21,10 @@ nd this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.

### Infrastructural

## [0.3.2] - 2020-09-10
### Changed
- Use version number instead of build number for the User-Agent ([#33](https://github.com/velocidi/velocidi-ios-objc-sdk/pull/33)).

## [0.3.1] - 2020-08-14
### Fixed
- Makes JSONModel usage compatible with Swift 3 ([#29](https://github.com/velocidi/velocidi-ios-objc-sdk/pull/29)).
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ platform :ios, '12.1'
project 'MyProject.xcodeproj'

target "MyProject" do
pod 'VelocidiSDK', '~> 0.3.1'
pod 'VelocidiSDK', '~> 0.3.2'
end
```

Expand All @@ -32,7 +32,7 @@ $ pod install
To integrate VelocidiSDK into your Xcode project using Carthage, specify it in your `Cartfile`:

```
github "velocidi/velocidi-ios-objc-sdk" ~> 0.3.1
github "velocidi/velocidi-ios-objc-sdk" ~> 0.3.2
```

Then, run `carthage` to build the framework and drag the built VelocidiSDK.framework into your Xcode project.
Expand Down
2 changes: 1 addition & 1 deletion VelocidiSDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |spec|
#

spec.name = "VelocidiSDK"
spec.version = "0.3.1"
spec.version = "0.3.2"
spec.summary = "Velocidi's Objective-C SDK to integrate with iOS apps"

# This description is used to generate tags and improve search results.
Expand Down
12 changes: 6 additions & 6 deletions VelocidiSDK/VelocidiSDK.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 6;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
Expand Down Expand Up @@ -726,10 +726,10 @@
buildSettings = {
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
CODE_SIGN_IDENTITY = "";
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 6;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 5;
DYLIB_CURRENT_VERSION = 6;
DYLIB_INSTALL_NAME_BASE = "@rpath";
HEADER_SEARCH_PATHS = (
"$(inherited)",
Expand Down Expand Up @@ -783,7 +783,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 6;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
Expand Down Expand Up @@ -829,10 +829,10 @@
buildSettings = {
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
CODE_SIGN_IDENTITY = "";
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 6;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 5;
DYLIB_CURRENT_VERSION = 6;
DYLIB_INSTALL_NAME_BASE = "@rpath";
HEADER_SEARCH_PATHS = (
"$(inherited)",
Expand Down
4 changes: 2 additions & 2 deletions VelocidiSDK/VelocidiSDK/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.3.1</string>
<string>0.3.2</string>
<key>CFBundleVersion</key>
<string>5</string>
<string>6</string>
</dict>
</plist>
4 changes: 2 additions & 2 deletions VelocidiSDK/VelocidiSDKTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>0.3.1</string>
<string>0.3.2</string>
<key>CFBundleVersion</key>
<string>5</string>
<string>6</string>
</dict>
</plist>

0 comments on commit 3f56da6

Please sign in to comment.