Skip to content

Commit

Permalink
3.1.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen Cobbe committed May 17, 2017
1 parent 72d30fb commit b12dfc0
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ObjectiveDropboxOfficial.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ObjectiveDropboxOfficial'
s.version = '3.0.18'
s.version = '3.1.0'
s.summary = 'Dropbox Objective C SDK for APIv2'
s.homepage = 'https://dropbox.com/developers/'
s.license = 'MIT'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ brew install carthage

```
# ObjectiveDropboxOfficial
github "https://github.com/dropbox/dropbox-sdk-obj-c" ~> 3.0.18
github "https://github.com/dropbox/dropbox-sdk-obj-c" ~> 3.1.0
```

Then, run the following command to checkout and build the Dropbox Objective-C SDK repository:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.0.18</string>
<string>3.1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.0.18</string>
<string>3.1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#import "DBSDKConstants.h"

NSString *const kV2SDKVersion = @"3.0.18";
NSString *const kV2SDKVersion = @"3.1.0";
NSString *const kV2SDKDefaultUserAgentPrefix = @"OfficialDropboxObjCSDKv2";
NSString *const kForegroundSessionId = @"com.dropbox.dropbox_sdk_obj_c_foreground";
NSString *const kBackgroundSessionId = @"com.dropbox.dropbox_sdk_obj_c_background";
Expand Down
7 changes: 7 additions & 0 deletions update_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,10 @@ echo '--------------------'
cat $mac_version | grep $1
echo '--------------------'
echo
echo
echo "Committing changes and tagging commit."
git commit -am "$1 release."
git tag "$1"
echo
echo "Changes ready for review and push"
echo

0 comments on commit b12dfc0

Please sign in to comment.