Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Release 1.0.0 Beta 1 (#102)" #104

Merged
merged 1 commit into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ATTNSDKFramework.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'ATTNSDKFramework'
s.version = '1.0.0-beta.1'
s.version = '0.6.0'
s.summary = 'Attentive IOS SDK'

# This description is used to generate tags and improve search results.
Expand Down
11 changes: 0 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
## [1.0.0-beta.1](https://github.com/attentive-mobile/attentive-ios-sdk/compare/0.6.0...1.0.0-beta.1) (2024-06-27)

### Breaking Changes
* Upgraded SDK minimum deployment target from iOS 11 to iOS 14 to support new features from iOS Frameworks.

### Feature
* Add a log level of verbose/standard/light to the SDK Config ([101](https://github.com/attentive-mobile/attentive-ios-sdk/pull/101)) ([0a40997](https://github.com/attentive-mobile/attentive-ios-sdk/commit/0a40997e62803d83731cc35d3b9c95aa5996893f))
* Create (or update) test suite ([100](https://github.com/attentive-mobile/attentive-ios-sdk/pull/100)) ([4e562cd](https://github.com/attentive-mobile/attentive-ios-sdk/commit/4e562cd93f4e17f6f7fd3498076895ec5e8e6fa8))
* Force show creatives on client apps for testing ([97](https://github.com/attentive-mobile/attentive-ios-sdk/pull/97)) ([1a2d81c](https://github.com/attentive-mobile/attentive-ios-sdk/commit/1a2d81cbfbb440638f5c5342225aeb58f11a236e))
* Mobile App Domain Switching ([95](https://github.com/attentive-mobile/attentive-ios-sdk/pull/95)) ([e12028d](e12028d7892ca5fbd785e26b05dfeda4ab187024))

## [0.6.0](https://github.com/attentive-mobile/attentive-ios-sdk/compare/0.5.1...0.6.0) (2024-06-13)

### Breaking Changes
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The attentive-ios-sdk is available through [CocoaPods](https://cocoapods.org). T

```ruby
target 'MyApp' do
pod 'ATTNSDKFramework', '1.0.0-beta.1'
pod 'ATTNSDKFramework', '~> 0.6'
end
```

Expand Down Expand Up @@ -40,7 +40,7 @@ In your applications `Package.swift` file, add the attentive-ios-sdk as a depend
```swift
dependencies: [
// your other app dependencies
.package(url: "https://github.com/attentive-mobile/attentive-ios-sdk", from: "1.0.0-beta.1"),
.package(url: "https://github.com/attentive-mobile/attentive-ios-sdk", from: "0.6.0"),
],
```

Expand Down Expand Up @@ -284,4 +284,4 @@ When/if the user logs back in, `identify` should be called again with the user's

## Changelog

Click [here](https://github.com/attentive-mobile/attentive-ios-sdk/blob/main/CHANGELOG.md) for a complete change log of every released version
Click [here](https://github.com/attentive-mobile/attentive-ios-sdk/blob/main/CHANGELOG.md) for a complete change log of every released version
2 changes: 1 addition & 1 deletion Sources/ATTNConstants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ import Foundation
struct ATTNConstants {
private init() { }

static let sdkVersion = "1.0.0-beta.1"
static let sdkVersion = "0.6.0"
static let skipFatigueEnvKey = "SKIP_FATIGUE_ON_CREATIVE"
}
2 changes: 1 addition & 1 deletion attentive-ios-sdk.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'attentive-ios-sdk'
s.version = '1.0.0-beta.1'
s.version = '0.6.0'
s.summary = 'Attentive IOS SDK'

# This description is used to generate tags and improve search results.
Expand Down
Loading