Skip to content

Commit

Permalink
Update underlying crypto
Browse files Browse the repository at this point in the history
- VirgilSDK -> 9.0.1
- VirgilCrypto -> 7.0.1
- VSCCrypto -> 0.17.1
- VirgilSDKPythia -> 0.12.1
- VirgilSDKRatchet -> 0.10.1
  • Loading branch information
SergeySeroshtan committed Aug 14, 2023
1 parent 2867e07 commit 30fcf86
Show file tree
Hide file tree
Showing 7 changed files with 67 additions and 70 deletions.
2 changes: 1 addition & 1 deletion CI/publish-docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ git clone -b gh-pages "${REPO_PATH}" --single-branch ${DOCS_DIR}
INFOPLIST_FILE_PATH="${GITHUB_WORKSPACE}/VirgilE3Kit/Info.plist"

# Define SDK versions
VIRGIL_SDK_VERSION="v4.0.0"
VIRGIL_SDK_VERSION="v4.0.1"
CURRENT_VERSION_DIR="${DOCS_DIR}/${VIRGIL_SDK_VERSION}"

# Generate the HTML documentation.
Expand Down
20 changes: 10 additions & 10 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -5,44 +5,44 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/VirgilSecurity/virgil-crypto-c.git",
"state" : {
"revision" : "591c32a4c54378e750c80052d7588df8056525b0",
"version" : "0.17.0"
"revision" : "40ae5231264c8f2d79354922fac15d96021aa8b5",
"version" : "0.17.1"
}
},
{
"identity" : "virgil-crypto-x",
"kind" : "remoteSourceControl",
"location" : "https://github.com/VirgilSecurity/virgil-crypto-x.git",
"state" : {
"revision" : "96fef3abb3c96eec0c14cdf3f406658776071dbd",
"version" : "7.0.0"
"revision" : "6334a21c49dafb305666aafc34819314960412de",
"version" : "7.0.1"
}
},
{
"identity" : "virgil-pythia-x",
"kind" : "remoteSourceControl",
"location" : "https://github.com/VirgilSecurity/virgil-pythia-x.git",
"state" : {
"revision" : "5b8eb3a4a8e891826d8a2c0d00e13a4b246aa596",
"version" : "0.12.0-dev.1"
"revision" : "6b85da7b8c3bf523df498e66c5bdb63c117be351",
"version" : "0.12.1"
}
},
{
"identity" : "virgil-ratchet-x",
"kind" : "remoteSourceControl",
"location" : "https://github.com/VirgilSecurity/virgil-ratchet-x.git",
"state" : {
"revision" : "19e28149a973aba2f70ba1c0cf176fa15e84e278",
"version" : "0.10.0"
"revision" : "f5be34003eb9a78743e24479fc85b407a665d9c0",
"version" : "0.10.1"
}
},
{
"identity" : "virgil-sdk-x",
"kind" : "remoteSourceControl",
"location" : "https://github.com/VirgilSecurity/virgil-sdk-x.git",
"state" : {
"revision" : "7165aafa08be93a874097033ec903bac447e4b9b",
"version" : "9.0.0"
"revision" : "53e32c076211a7623f113df49e6f48c8974c9024",
"version" : "9.0.1"
}
}
],
Expand Down
9 changes: 3 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import PackageDescription
let package = Package(
name: "VirgilE3Kit",
platforms: [
.macOS(.v10_12), .iOS(.v11), .tvOS(.v11), .watchOS(.v4),
.macOS(.v10_13), .iOS(.v11), .tvOS(.v11), .watchOS(.v4),
],
products: [
.library(
Expand All @@ -16,11 +16,8 @@ let package = Package(
],

dependencies: [
.package(
url: "https://github.com/VirgilSecurity/virgil-pythia-x.git",
exact: .init(0, 12, 0, prereleaseIdentifiers: ["dev", "1"])
),
.package(url: "https://github.com/VirgilSecurity/virgil-ratchet-x.git", exact: .init(0, 10, 0)),
.package(url: "https://github.com/VirgilSecurity/virgil-pythia-x.git", exact: .init(0, 12, 1)),
.package(url: "https://github.com/VirgilSecurity/virgil-ratchet-x.git", exact: .init(0, 10, 1)),
],

targets: [
Expand Down
2 changes: 1 addition & 1 deletion Source/Utils/ProductInfo.swift
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ import Foundation

internal enum ProductInfo {
internal static let name: String = "e3kit"
internal static let version: String = "4.0.0"
internal static let version: String = "4.0.1"
}
6 changes: 3 additions & 3 deletions VirgilE3Kit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "VirgilE3Kit"
s.version = "4.0.0"
s.version = "4.0.1"
s.swift_version = "5.0"
s.license = { :type => "BSD", :file => "LICENSE" }
s.summary = "Vigil E3Kit for Apple devices and languages"
Expand All @@ -12,6 +12,6 @@ Pod::Spec.new do |s|
s.watchos.deployment_target = "4.0"
s.source = { :git => "https://github.com/VirgilSecurity/virgil-e3kit-x.git", :tag => s.version }
s.source_files = 'Source/**/*.{swift}'
s.dependency "VirgilSDKPythia", '= 0.12.0'
s.dependency "VirgilSDKRatchet", '= 0.10.0'
s.dependency "VirgilSDKPythia", '= 0.12.1'
s.dependency "VirgilSDKRatchet", '= 0.10.1'
end
Loading

0 comments on commit 30fcf86

Please sign in to comment.