Skip to content

Commit

Permalink
Make the fields in AppVersion public (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
iKenndac authored Nov 5, 2024
1 parent 2e2941c commit 38b4868
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/Recap/Public/AppVersion.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import Foundation
/// - The `string` will be used as the unique identifier for a `Release`, to only display a release once.
/// - The `change` property is useful metadata, for example when creating logic to only present a RecapScreen when there is a major or minor change.
public struct AppVersion: Equatable {
let string: String
let change: Change
public let string: String
public let change: Change

public init(string: String, change: Change) {
self.string = string
Expand Down

0 comments on commit 38b4868

Please sign in to comment.