Skip to content

Commit

Permalink
Reduce minimum core version for subscription with filter
Browse files Browse the repository at this point in the history
  • Loading branch information
bgoncal committed Dec 17, 2024
1 parent 469838a commit 2b3d2f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Shared/Environment/AppConstants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public extension Version {
static let canUseAppThemeForStatusBar: Version = .init(major: 2024, minor: 7)
/// The version where the app can subscribe to entities changes with a filter (e.g. only state changes from sensor
/// domain)
static let canSubscribeEntitiesChangesWithFilter: Version = .init(major: 2024, minor: 11)
static let canSubscribeEntitiesChangesWithFilter: Version = .init(major: 2024, minor: 10)

var coreRequiredString: String {
L10n.requiresVersion(String(format: "core-%d.%d", major, minor ?? -1))
Expand Down

0 comments on commit 2b3d2f5

Please sign in to comment.