Skip to content
This repository has been archived by the owner on Feb 25, 2021. It is now read-only.

Commit

Permalink
Release 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebuss committed Feb 10, 2017
1 parent 7899237 commit a1656f9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
# MTBBarcodeScanner CHANGELOG

## 4.0.0

- Setting the `camera` property directly is now deprecated in favor of the more-helpful `setCamera:error:` method.
- Methods that accept an error argument now have a return value to satisfy Xcode analyzer.

Special thanks to [@shagedorn](https://github.com/shagedorn) for all of the work on this release!

## 3.1.0

- Fixed issue where calling a method on UIImagePickerController could prompt a rejection from the App Store if a `NSPhotoLibraryUsageDescription` is not provided in the Info.plist file. Details are [here](https://github.com/mikebuss/MTBBarcodeScanner/issues/86). Thanks @brblakley!
Expand Down
2 changes: 1 addition & 1 deletion MTBBarcodeScanner.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "MTBBarcodeScanner"
s.version = "3.1.0"
s.version = "4.0.0"
s.summary = "A lightweight, easy-to-use barcode scanning library for iOS 8+."
s.homepage = "https://github.com/mikebuss/MTBBarcodeScanner"
s.license = 'MIT'
Expand Down
4 changes: 2 additions & 2 deletions Project/MTBBarcodeScannerExample.xcodeproj/project.pbxproj
Expand Up @@ -536,7 +536,7 @@
INFOPLIST_FILE = "MTBBarcodeScannerExample/MTBBarcodeScannerExample-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.mikebuss.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_BUNDLE_IDENTIFIER = com.mikebuss.MTBBarcodeScannerExample2;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "";
WRAPPER_EXTENSION = app;
Expand All @@ -556,7 +556,7 @@
INFOPLIST_FILE = "MTBBarcodeScannerExample/MTBBarcodeScannerExample-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.mikebuss.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_BUNDLE_IDENTIFIER = com.mikebuss.MTBBarcodeScannerExample2;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "";
WRAPPER_EXTENSION = app;
Expand Down
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>3.1.0</string>
<string>4.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit a1656f9

Please sign in to comment.