Skip to content
This repository was archived by the owner on Jun 4, 2025. It is now read-only.

Commit fcfef1e

Browse files
Merge pull request #270 from wordpress-mobile/try/analyticsevent-improvements
Makes some properties of AnalyticsEvent public.
2 parents 49a1b83 + 5e6b26f commit fcfef1e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

WordPressShared.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "WordPressShared"
3-
s.version = "1.10.0-beta.1"
3+
s.version = "1.10.0-beta.2"
44
s.summary = "Shared components used in building the WordPress iOS apps and other library components."
55

66
s.description = <<-DESC

WordPressShared/Core/Analytics/AnalyticsEvent.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ import Foundation
3939
/// ~~~
4040
///
4141
public final class AnalyticsEvent {
42-
let name: String
43-
let properties: [String: String]
42+
public let name: String
43+
public let properties: [String: String]
4444

4545
public init(name: String, properties: [String: String]) {
4646
self.name = name

0 commit comments

Comments
 (0)