From 9bc4b3a4055eae57fb2b5001bc72ff1d5992e27b Mon Sep 17 00:00:00 2001 From: Russel Date: Fri, 7 Aug 2020 16:07:43 +0300 Subject: [PATCH 1/2] remove unnecessary files --- Keystore/KeystoreData.swift | 8 ------ Keystore/KeystoreDefinition.swift | 41 ------------------------------- Keystore/KeystoreExtractor.swift | 8 ------ 3 files changed, 57 deletions(-) delete mode 100644 Keystore/KeystoreData.swift delete mode 100644 Keystore/KeystoreDefinition.swift delete mode 100644 Keystore/KeystoreExtractor.swift diff --git a/Keystore/KeystoreData.swift b/Keystore/KeystoreData.swift deleted file mode 100644 index 91a90d9..0000000 --- a/Keystore/KeystoreData.swift +++ /dev/null @@ -1,8 +0,0 @@ -// -// KeystoreData.swift -// FearlessUtils -// -// Created by Ruslan Rezin on 05.08.2020. -// - -import Foundation diff --git a/Keystore/KeystoreDefinition.swift b/Keystore/KeystoreDefinition.swift deleted file mode 100644 index 6905189..0000000 --- a/Keystore/KeystoreDefinition.swift +++ /dev/null @@ -1,41 +0,0 @@ -import Foundation - -public struct KeystoreDefinition: Codable { - public let address: String - public let encoded: String - public let encoding: KeystoreEncoding - public let version: String - public let meta: KeystoreMeta - - public init(address: String, - encoded: String, - encoding: KeystoreEncoding, - version: String, - meta: KeystoreMeta) { - self.address = address - self.encoded = encoded - self.encoding = encoding - self.version = version - self.meta = meta - } -} - -public struct KeystoreEncoding: Codable { - public let content: [String] - public let type: [String] - - public init(content: [String], type: [String]) { - self.content = content - self.type = type - } -} - -public struct KeystoreMeta: Codable { - enum CodingKeys: String, CodingKey { - case name - case created = "whenCreated" - } - - public let name: String - public let created: Int64 -} diff --git a/Keystore/KeystoreExtractor.swift b/Keystore/KeystoreExtractor.swift deleted file mode 100644 index cae5b52..0000000 --- a/Keystore/KeystoreExtractor.swift +++ /dev/null @@ -1,8 +0,0 @@ -// -// KeystoreExtractor.swift -// FearlessUtils -// -// Created by Ruslan Rezin on 05.08.2020. -// - -import Foundation From d18d308fd824a5f47623070588ce2ca713028b07 Mon Sep 17 00:00:00 2001 From: Russel Date: Fri, 7 Aug 2020 16:09:38 +0300 Subject: [PATCH 2/2] v0.4.1 --- FearlessUtils.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FearlessUtils.podspec b/FearlessUtils.podspec index 83e5ff7..7c5f27d 100644 --- a/FearlessUtils.podspec +++ b/FearlessUtils.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'FearlessUtils' - s.version = '0.4.0' + s.version = '0.4.1' s.summary = 'Utility library that implements clients specific logic to interact with substrate based networks' s.homepage = 'https://github.com/soramitsu/fearless-utils-iOS'