Skip to content

Commit

Permalink
Prepare for release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marandaneto committed Oct 10, 2023
1 parent 74d803c commit b4ca431
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
## Next

## 2.1.0 - 2023-10-10

- isFeatureEnabled now returns false if disabled [#74](https://github.com/PostHog/posthog-ios/pull/74)
- Add loadFeatureFlagsOnStart configuration flag [#71](https://github.com/PostHog/posthog-ios/pull/71)
- Add preloadFeatureFlags configuration flag [#71](https://github.com/PostHog/posthog-ios/pull/71)

## 2.0.5 - 2023-10-06

Expand Down
2 changes: 1 addition & 1 deletion PostHog.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "PostHog"
s.version = "2.0.5"
s.version = "2.1.0"
s.summary = "The hassle-free way to add posthog to your iOS app."

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion PostHog/Classes/PHGPostHog.m
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ + (NSString *)version
{
// this has to match the actual version, NOT what's in info.plist
// because Apple only accepts X.X.X as versions in the review process.
return @"2.0.5";
return @"2.1.0";
}

#pragma mark - Helpers
Expand Down
2 changes: 1 addition & 1 deletion PostHog/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.0.5</string>
<string>2.1.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down

0 comments on commit b4ca431

Please sign in to comment.