diff --git a/RAD.podspec b/RAD.podspec
index 99aba61..aa963cb 100644
--- a/RAD.podspec
+++ b/RAD.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RAD"
- s.version = "1.0.0"
+ s.version = "1.0.1"
s.summary = "The RAD SDK is a great starting place to learn more about how a RAD implementation might work in your client app."
s.description = "Remote Audio Data (RAD) measures podcast listening across a range of participating clients and platforms, aggregating the data in a publishers’ analytics endpoint. RAD is not intended to replace download statistics as a point of measurement for the on-demand audio industry, but is designed to provide data on listening events to complement this download statistics.
@@ -12,7 +12,7 @@ Pod::Spec.new do |s|
s.author = { "NPR" => "remoteaudiodata@npr.org" }
s.platform = :ios, "10.0"
s.source = { :git => "https://github.com/npr/RAD-iOS.git", :tag => "#{s.version}" }
- s.source_files = "RAD/**/*.{h,m, swift}"
+ s.source_files = "RAD/**/*.{h,m,swift}"
s.resource = "RAD/Model/RADDatabaseModel.xcdatamodeld"
s.frameworks = "Foundation", "AVFoundation", "CoreMedia", "CoreData"
s.dependency "ReachabilitySwift"
diff --git a/RAD/Extensions/Foundation/Array+JSONExtension.swift b/RAD/Extensions/Foundation/Array+JSONExtension.swift
deleted file mode 100644
index bbcf990..0000000
--- a/RAD/Extensions/Foundation/Array+JSONExtension.swift
+++ /dev/null
@@ -1,12 +0,0 @@
-//
-// Array+JSONExtension.swift
-// RAD
-//
-// Created by David Livadaru on 07/06/2018.
-// Copyright © 2018 National Public Radio. All rights reserved.
-//
-
-import Foundation
-
-extension Array: JSON where Element == JSONDictionary {
-}
diff --git a/RAD/Extensions/Foundation/Dictionary+JSONExtension.swift b/RAD/Extensions/Foundation/Dictionary+JSONExtension.swift
deleted file mode 100644
index acc1f98..0000000
--- a/RAD/Extensions/Foundation/Dictionary+JSONExtension.swift
+++ /dev/null
@@ -1,12 +0,0 @@
-//
-// Dictionary+JSONExtension.swift
-// RAD
-//
-// Created by David Livadaru on 07/06/2018.
-// Copyright © 2018 National Public Radio. All rights reserved.
-//
-
-import Foundation
-
-extension Dictionary: JSON where Key == String, Value == Any {
-}
diff --git a/RAD/Info.plist b/RAD/Info.plist
index 4c0d218..139f35e 100644
--- a/RAD/Info.plist
+++ b/RAD/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 1.0.0
+ 1.0.1
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSPrincipalClass
diff --git a/RAD/Model/Entities/JSONObject.swift b/RAD/Model/Entities/JSONObject.swift
deleted file mode 100644
index 4c3214a..0000000
--- a/RAD/Model/Entities/JSONObject.swift
+++ /dev/null
@@ -1,17 +0,0 @@
-//
-// JSONObject.swift
-// RAD
-//
-// Created by David Livadaru on 07/06/2018.
-// Copyright © 2018 National Public Radio. All rights reserved.
-//
-
-import Foundation
-
-public class JSONObject {
- public let json: JSONType
-
- init?(json: JSONType) {
- self.json = json
- }
-}