diff --git a/README.md b/README.md index 668163ed..21c121b0 100644 --- a/README.md +++ b/README.md @@ -128,28 +128,6 @@ OPTIONS: --use-mock-observable If set, a property wrapper will be used to mock RxSwift Observable variables (default is set to false). --use-template-func If set, a common template function will be called from all functions in mock classes (default is set to false). -h, --help Show help information. - ``` - - -## Add MockoloFramework to your project - -Option 1: SPM -```swift - -dependencies: [ - .package(url: "https://github.com/uber/mockolo.git", from: "1.8.2"), -], -targets: [ - .target(name: "MyTarget", dependencies: ["MockoloFramework"]), -] - -``` -Option 2: Cocoapods -``` -target 'MyTarget' do - platform :osx, '10.14' - pod 'MockoloFramework', '~>1.1.2' -end ``` @@ -157,7 +135,7 @@ end The `install-script.sh` will build and package up the `mockolo` binary and other necessary resources in the same bundle. -``` +```sh $ ./install-script.sh -h // see input options $ ./install-script.sh -s [source dir] -t mockolo -d [destination dir] -o [output filename].tar.gz ``` diff --git a/Sources/MockoloFramework/Version.swift b/Sources/MockoloFramework/Version.swift index ac3a5f8b..6162d1cd 100644 --- a/Sources/MockoloFramework/Version.swift +++ b/Sources/MockoloFramework/Version.swift @@ -3,5 +3,5 @@ public struct Version { public let value: String /// The current Mockolo version. - public static let current = Version(value: "1.8.2") + public static let current = Version(value: "2.0.0") }