Skip to content

Commit

Permalink
Set MLVision pod version to avoid breaking changes (flutter#725)
Browse files Browse the repository at this point in the history
* Set MLVision pod version
  • Loading branch information
bparrishMines authored Aug 17, 2018
1 parent 699ca85 commit 77b2fde
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
4 changes: 4 additions & 0 deletions packages/firebase_ml_vision/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.1

Set pod version of Firebase/MLVision to avoid breaking changes.

## 0.1.0

* **Breaking Change** Add Barcode, Face, and Label on-device detectors.
Expand Down
21 changes: 11 additions & 10 deletions packages/firebase_ml_vision/ios/firebase_ml_vision.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,25 @@
#
Pod::Spec.new do |s|
s.name = 'firebase_ml_vision'
s.version = '0.0.1'
s.summary = 'A new Flutter plugin.'
s.version = '0.1.1'
s.summary = 'Flutter plugin for Google ML Vision for Firebase.'
s.description = <<-DESC
A new Flutter plugin.
An SDK that brings Google's machine learning expertise to Android and iOS apps in a powerful yet
easy-to-use package.
DESC
s.homepage = 'http://example.com'
s.homepage = 'https://github.com/flutter/plugins/tree/master/packages/firebase_ml_vision'
s.license = { :file => '../LICENSE' }
s.author = { 'Your Company' => 'email@example.com' }
s.author = { 'Flutter Team' => 'flutter-dev@googlegroups.com' }
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.dependency 'Firebase/Core'
s.dependency 'Firebase/MLVision'
s.dependency 'Firebase/MLVisionBarcodeModel'
s.dependency 'Firebase/MLVisionFaceModel'
s.dependency 'Firebase/MLVisionLabelModel'
s.dependency 'Firebase/MLVisionTextModel'
s.dependency 'Firebase/MLVision', '5.0.1'
s.dependency 'Firebase/MLVisionBarcodeModel', '5.0.1'
s.dependency 'Firebase/MLVisionFaceModel', '5.0.1'
s.dependency 'Firebase/MLVisionLabelModel', '5.0.1'
s.dependency 'Firebase/MLVisionTextModel', '5.0.1'
s.ios.deployment_target = '8.0'
s.static_framework = true
end
2 changes: 1 addition & 1 deletion packages/firebase_ml_vision/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: firebase_ml_vision
description: Flutter plugin for Google ML Vision for Firebase, an SDK that brings Google's machine
learning expertise to Android and iOS apps in a powerful yet easy-to-use package.
version: 0.1.0
version: 0.1.1
author: Flutter Team <flutter-dev@googlegroups.com>
homepage: https://github.com/flutter/plugins/tree/master/packages/firebase_ml_vision

Expand Down

0 comments on commit 77b2fde

Please sign in to comment.