diff --git a/Euler.podspec b/Euler.podspec index eaddb8f..307fbf2 100644 --- a/Euler.podspec +++ b/Euler.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Euler" - s.version = "0.3.7" + s.version = "0.3.8" s.summary = "The open source computational framework for the Swift language (early stage)" s.description = <<-DESC The open source computational framework for the Swift language (early stage) diff --git a/Euler.xcodeproj/project.pbxproj b/Euler.xcodeproj/project.pbxproj index 25cc543..accf8ea 100644 --- a/Euler.xcodeproj/project.pbxproj +++ b/Euler.xcodeproj/project.pbxproj @@ -826,7 +826,7 @@ HEADER_SEARCH_PATHS = "$(inherited)"; INFOPLIST_FILE = Euler.xcodeproj/Euler_Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; - MARKETING_VERSION = 0.3.7; + MARKETING_VERSION = 0.3.8; OTHER_CFLAGS = "$(inherited)"; OTHER_LDFLAGS = "$(inherited)"; OTHER_SWIFT_FLAGS = "$(inherited)"; @@ -851,7 +851,7 @@ HEADER_SEARCH_PATHS = "$(inherited)"; INFOPLIST_FILE = Euler.xcodeproj/Euler_Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; - MARKETING_VERSION = 0.3.7; + MARKETING_VERSION = 0.3.8; OTHER_CFLAGS = "$(inherited)"; OTHER_LDFLAGS = "$(inherited)"; OTHER_SWIFT_FLAGS = "$(inherited)"; diff --git a/README.md b/README.md index 1b96f6d..4aa6736 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ You can use the following options to install Euler, but we recommend using Cocoa [CocoaPods](https://cocoapods.org) is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate Euler into your Xcode project using CocoaPods, specify it in your `Podfile`: ```ruby -pod 'Euler', '~> 0.3.7' +pod 'Euler', '~> 0.3.8' ``` ### Carthage @@ -21,7 +21,7 @@ pod 'Euler', '~> 0.3.7' [Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. To integrate Euler into your Xcode project using Carthage, specify it in your `Cartfile`: ```ogdl -github "arguiot/Euler" ~> 0.3.7 +github "arguiot/Euler" ~> 0.3.8 ``` ### Swift Package Manager @@ -32,7 +32,7 @@ Once you have your Swift package set up, adding Euler as a dependency is as easy ```swift dependencies: [ - .package(url: "https://github.com/arguiot/Euler.git", .upToNextMajor(from: "0.3.7")) + .package(url: "https://github.com/arguiot/Euler.git", .upToNextMajor(from: "0.3.8")) ] ```