Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).


## [3.7.0] - 2017-06-26
### Added
- Support for querying saved and cached queries
- Support for querying datasets
- Support for HTTP proxies
- Support for custom API URL base authority

## [3.6.2] - 2017-06-08
### Fixed
- Fixed issue where calling `uploadWithFinishedBlock:` quickly in succession could cause duplicate event uploads.
Expand Down
2 changes: 1 addition & 1 deletion KeenClient.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'KeenClient'
spec.version = '3.6.2'
spec.version = '3.7.0'
spec.license = { :type => 'MIT' }
spec.ios.deployment_target = '6.0'
spec.osx.deployment_target = '10.9'
Expand Down
2 changes: 1 addition & 1 deletion KeenClient/KeenConstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#import <Foundation/Foundation.h>

#define kKeenSdkVersion @"3.6.2"
#define kKeenSdkVersion @"3.7.0"

extern NSString * const kKeenApiUrlScheme;
extern NSString * const kKeenDefaultApiUrlAuthority;
Expand Down
4 changes: 2 additions & 2 deletions KeenClientFramework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.6.2</string>
<string>3.7.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>3.6.2</string>
<string>3.7.0</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down