Skip to content

Commit

Permalink
Release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
duartepinto committed Jul 16, 2019
1 parent 916a1d8 commit 7e6cc90
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 19 deletions.
27 changes: 16 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
# Changelog

All notable changes to this project will be documented in this file.
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
nd this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [Unreleased]

### Added
### Added

### Changed
### Changed

### Deprecated
### Deprecated

### Removed
### Removed

### Fixed
### Fixed

### Security
### Security

### Infrastructural
### Infrastructural

## [0.1.0] - 2019-07-16
### Added
- Support for track requests ([#3](https://github.com/velocidi/velocidi-ios-objc-sdk/pull/3))
- Support for match requests ([#9](https://github.com/velocidi/velocidi-ios-objc-sdk/pull/9))
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ _This is still a draft of the process, it needs verification and a test run in a
```

1. Edit the CHANGELOG.md
1. Commit the changes.
1. Commit the changes. `git commit -m "Release v0.1.0"`
1. Tag the commit.

`$ git tag 0.1.0 && git push --tags`
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.0.1"
spec.version = "0.1.0"
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
8 changes: 4 additions & 4 deletions VelocidiSDK/VelocidiSDK.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 1;
CURRENT_PROJECT_VERSION = 2;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
Expand Down Expand Up @@ -723,7 +723,7 @@
CURRENT_PROJECT_VERSION = 2;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_CURRENT_VERSION = 2;
DYLIB_INSTALL_NAME_BASE = "@rpath";
HEADER_SEARCH_PATHS = (
"$(inherited)",
Expand Down Expand Up @@ -776,7 +776,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 1;
CURRENT_PROJECT_VERSION = 2;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
Expand Down Expand Up @@ -825,7 +825,7 @@
CURRENT_PROJECT_VERSION = 2;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_CURRENT_VERSION = 2;
DYLIB_INSTALL_NAME_BASE = "@rpath";
HEADER_SEARCH_PATHS = (
"$(inherited)",
Expand Down
2 changes: 1 addition & 1 deletion VelocidiSDK/VelocidiSDK/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
<key>CFBundleShortVersionString</key>
<string>0.1.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<string>2</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion VelocidiSDK/VelocidiSDKTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
<key>CFBundleShortVersionString</key>
<string>0.1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
<string>2</string>
</dict>
</plist>

0 comments on commit 7e6cc90

Please sign in to comment.