Skip to content

Commit

Permalink
Version 3.0.0, compiled with Xcode 16.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kober32 committed Nov 1, 2024
1 parent d6a79ad commit a0c3beb
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 19 deletions.
10 changes: 5 additions & 5 deletions AppProtection.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.cocoapods_version = '>= 1.10'
s.name = "AppProtection"
s.version = "2.1.2"
s.version = "3.0.0"
s.summary = "Malwarelytics AppProtection by Wultra"
s.homepage = "https://www.wultra.com/malwarelytics"
s.social_media_url = 'https://twitter.com/wultra'
Expand All @@ -19,10 +19,10 @@ Pod::Spec.new do |s|
LICENSE
}
s.prepare_command = <<-CMD
./prepare.sh 2.1.2 4afdd53186a287aff1c0e81dc3e8f049768ffae8332a790f4e8ef6bea0f4e96c
./prepare.sh 3.0.0 65b7e8ad92eff9e9a2dcad893f1d4cad5d38613966d0366e5048ef23d3e00647
CMD
s.vendored_frameworks = "AppProtection.xcframework"
s.vendored_frameworks = "WultraAppProtection.xcframework"
s.platform = :ios
s.swift_version = "5.0"
s.ios.deployment_target = '10.0'
s.swift_version = "5.10"
s.ios.deployment_target = '12.0'
end
3 changes: 3 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 3.0.0
- Renamed the swift module to __`WultraAppProtection`__ from `AppProtection`

## 2.1.0
- Added unwanted apps detection

Expand Down
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.4
// swift-tools-version:5.10
import PackageDescription

let package = Package(
Expand All @@ -7,12 +7,12 @@ let package = Package(
.iOS(.v10)
],
products: [
.library(name: "AppProtection", targets: ["AppProtection"])
.library(name: "WultraAppProtection", targets: ["WultraAppProtection"])
],
targets: [
.binaryTarget(
name: "AppProtection",
url: "https://wultra.jfrog.io/artifactory/malwarelytics-apple-release/AppProtection-2.1.2.xcframework.zip",
checksum: "4afdd53186a287aff1c0e81dc3e8f049768ffae8332a790f4e8ef6bea0f4e96c")
name: "WultraAppProtection",
url: "https://wultra.jfrog.io/artifactory/malwarelytics-apple-release/WultraAppProtection-3.0.0.xcframework.zip",
checksum: "65b7e8ad92eff9e9a2dcad893f1d4cad5d38613966d0366e5048ef23d3e00647")
]
)
2 changes: 1 addition & 1 deletion docs/Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The `AppSecurity` swift class is a sample implementation over the `AppProtection

```swift
import Foundation
import AppProtection
import WultraAppProtection

class AppSecurity: AppProtectionRaspDelegate {

Expand Down
8 changes: 4 additions & 4 deletions docs/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Add the following repository as a dependency to your project:
You can use Xcode's dedicated user interface to do this or add the dependency manually, for example:

```swift
// swift-tools-version:5.4
// swift-tools-version:5.10

import PackageDescription

Expand All @@ -45,13 +45,13 @@ Add the following repository as a dependency to your project:
targets: ["YourLibrary"]),
],
dependencies: [
.package(name: "AppProtection", url: "https://github.com/wultra/malwarelytics-apple-release.git", .upToNextMajor(from: "1.2.0"))
.package(name: "AppProtection", url: "https://github.com/wultra/malwarelytics-apple-release.git", .upToNextMajor(from: "3.0.0"))
],
targets: [
.target(
name: "YourLibrary",
dependencies: [
"AppProtection"
"WultraAppProtection"
])
]
)
Expand All @@ -69,7 +69,7 @@ The library is also distributed via Cocoapods private repository. If you're not
```rb
target 'MyProject' do
use_frameworks!
pod 'AppProtection', :git => 'https://github.com/wultra/malwarelytics-apple-release.git', :tag => '2.1.1'
pod 'AppProtection', :git => 'https://github.com/wultra/malwarelytics-apple-release.git', :tag => '3.0.0'
end
```
You can check the latest versions of the library at the [release page](https://github.com/wultra/malwarelytics-apple-release/tags).
Expand Down
10 changes: 7 additions & 3 deletions docs/Release-Notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@

## Current Release

### Release 2.1.2-dev
### Release 3.0.0
- Renamed the swift module to __`WultraAppProtection`__ from `AppProtection`

- Change debugger detection default to `.notify` (#113)
## Previous Releases

### Release 2.1.2

- Change debugger detection default to `.notify` (#113)
- Updated TestFlight certificate

## Previous Releases

### Release 2.1.1
- Add unwanted apps detection (#104)
Expand Down
2 changes: 1 addition & 1 deletion prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set +v
# -----------------------------------------------------------------------------
# Global config
# -----------------------------------------------------------------------------
LIB_NAME='AppProtection'
LIB_NAME='WultraAppProtection'
LIB_BASE_URL="https://wultra.jfrog.io/artifactory/malwarelytics-apple-release"

# -----------------------------------------------------------------------------
Expand Down

0 comments on commit a0c3beb

Please sign in to comment.