Skip to content

Commit

Permalink
Merge pull request #270 from wordpress-mobile/try/analyticsevent-impr…
Browse files Browse the repository at this point in the history
…ovements

Makes some properties of AnalyticsEvent public.
  • Loading branch information
diegoreymendez authored Aug 3, 2020
2 parents 49a1b83 + 5e6b26f commit fcfef1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion WordPressShared.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "WordPressShared"
s.version = "1.10.0-beta.1"
s.version = "1.10.0-beta.2"
s.summary = "Shared components used in building the WordPress iOS apps and other library components."

s.description = <<-DESC
Expand Down
4 changes: 2 additions & 2 deletions WordPressShared/Core/Analytics/AnalyticsEvent.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ import Foundation
/// ~~~
///
public final class AnalyticsEvent {
let name: String
let properties: [String: String]
public let name: String
public let properties: [String: String]

public init(name: String, properties: [String: String]) {
self.name = name
Expand Down

0 comments on commit fcfef1e

Please sign in to comment.