diff --git a/AEPRulesEngine.podspec b/AEPRulesEngine.podspec index 38d9364..eb5cb6a 100644 --- a/AEPRulesEngine.podspec +++ b/AEPRulesEngine.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "AEPRulesEngine" - s.version = "2.0.0" + s.version = "4.0.0" s.summary = "AEPRulesEngine" s.description = <<-DESC A simple, generic, extensible Rules Engine in Swift diff --git a/README.md b/README.md index a2ebb9b..7ff999d 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ Alternatively, if your project has a `Package.swift` file, you can add AEPRulesE ``` dependencies: [ - .package(url: "https://github.com/adobe/aepsdk-rulesengine-ios.git", .upToNextMajor(from: "2.0.0")) + .package(url: "https://github.com/adobe/aepsdk-rulesengine-ios.git", .upToNextMajor(from: "4.0.0")) ] ``` diff --git a/Sources/AEPRulesEngine/RulesEngine.swift b/Sources/AEPRulesEngine/RulesEngine.swift index 6377529..5a7ee44 100644 --- a/Sources/AEPRulesEngine/RulesEngine.swift +++ b/Sources/AEPRulesEngine/RulesEngine.swift @@ -15,7 +15,7 @@ import Foundation public typealias RulesTracer = (Bool, Rule, Context, RulesFailure?) -> Void public class RulesEngine { - public let version = "2.0.0" + public let version = "4.0.0" let evaluator: Evaluating let transformer: Transforming var tracer: RulesTracer?