Skip to content

Commit

Permalink
Bump to 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dethi committed Mar 12, 2015
1 parent 539a4eb commit a371947
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
4 changes: 2 additions & 2 deletions AlgoliaSearch-Client.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = 'AlgoliaSearch-Client'
s.version = '3.2.0'
s.version = '3.3.0'
s.license = 'MIT'
s.summary = 'Algolia Search API Client for iOS & OS X.'
s.homepage = 'https://github.com/algolia/algoliasearch-client-objc'
s.author = { 'Algolia' => '[email protected]' }
s.source = { :git => 'https://github.com/algolia/algoliasearch-client-objc.git', :tag => '3.2.0' }
s.source = { :git => 'https://github.com/algolia/algoliasearch-client-objc.git', :tag => '3.3.0' }
s.source_files = 'src'
s.requires_arc = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
allowLocationSimulation = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "591C933218E265C3001F1A0F"
BuildableName = "libalgoliasearch-client-objc.a"
BlueprintName = "algoliasearch-client-objc"
ReferencedContainer = "container:algoliasearch-client-objc.xcodeproj">
</BuildableReference>
</MacroExpansion>
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,29 @@
<string>algoliasearch-client-objc</string>
<key>IDESourceControlProjectOriginsDictionary</key>
<dict>
<key>58E5A108-BF31-45D1-AEC3-DD30C9ECA013</key>
<key>95CE8D3CD2EE20AACCB7738888F7D91EE95C3393</key>
<string>https://github.com/algolia/algoliasearch-client-objc.git</string>
</dict>
<key>IDESourceControlProjectPath</key>
<string>algoliasearch-client-objc.xcworkspace</string>
<key>IDESourceControlProjectRelativeInstallPathDictionary</key>
<dict>
<key>58E5A108-BF31-45D1-AEC3-DD30C9ECA013</key>
<key>95CE8D3CD2EE20AACCB7738888F7D91EE95C3393</key>
<string>..</string>
</dict>
<key>IDESourceControlProjectURL</key>
<string>https://github.com/algolia/algoliasearch-client-objc.git</string>
<key>IDESourceControlProjectVersion</key>
<integer>110</integer>
<integer>111</integer>
<key>IDESourceControlProjectWCCIdentifier</key>
<string>58E5A108-BF31-45D1-AEC3-DD30C9ECA013</string>
<string>95CE8D3CD2EE20AACCB7738888F7D91EE95C3393</string>
<key>IDESourceControlProjectWCConfigurations</key>
<array>
<dict>
<key>IDESourceControlRepositoryExtensionIdentifierKey</key>
<string>public.vcs.git</string>
<key>IDESourceControlWCCIdentifierKey</key>
<string>58E5A108-BF31-45D1-AEC3-DD30C9ECA013</string>
<string>95CE8D3CD2EE20AACCB7738888F7D91EE95C3393</string>
<key>IDESourceControlWCCName</key>
<string>algoliasearch-client-objc</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion src/ASAPIClient.m
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ -(instancetype) initWithApplicationID:(NSString*)papplicationID apiKey:(NSString
httpRequestOperationManager.requestSerializer = [AFJSONRequestSerializer serializer];
[httpRequestOperationManager.requestSerializer setValue:self.apiKey forHTTPHeaderField:@"X-Algolia-API-Key"];
[httpRequestOperationManager.requestSerializer setValue:self.applicationID forHTTPHeaderField:@"X-Algolia-Application-Id"];
[httpRequestOperationManager.requestSerializer setValue:[NSString stringWithFormat:@"Algolia for Objective-C %@", @"3.2.1"] forHTTPHeaderField:@"User-Agent"];
[httpRequestOperationManager.requestSerializer setValue:[NSString stringWithFormat:@"Algolia for Objective-C %@", @"3.3.0"] forHTTPHeaderField:@"User-Agent"];
if (self.tagFilters != nil) {
[httpRequestOperationManager.requestSerializer setValue:self.tagFilters forHTTPHeaderField:@"X-Algolia-TagFilters"];
}
Expand Down

0 comments on commit a371947

Please sign in to comment.