├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── ReleaseNotesKit │ ├── Extensions │ ├── Bundle+.swift │ └── UIApplication+.swift │ ├── Model │ ├── ITunesLookup.swift │ └── ReleaseNotesError.swift │ ├── ReleaseNotesKit+.swift │ ├── ReleaseNotesKit.swift │ └── View │ └── ReleaseNotesView.swift ├── Tests └── ReleaseNotesKitTests │ └── ReleaseNotesKitTests.swift └── rnk-hero.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/ReleaseNotesKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/ReleaseNotesKit/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/ReleaseNotesKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/ReleaseNotesKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/ReleaseNotesKit/HEAD/README.md -------------------------------------------------------------------------------- /Sources/ReleaseNotesKit/Extensions/Bundle+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/ReleaseNotesKit/HEAD/Sources/ReleaseNotesKit/Extensions/Bundle+.swift -------------------------------------------------------------------------------- /Sources/ReleaseNotesKit/Extensions/UIApplication+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/ReleaseNotesKit/HEAD/Sources/ReleaseNotesKit/Extensions/UIApplication+.swift -------------------------------------------------------------------------------- /Sources/ReleaseNotesKit/Model/ITunesLookup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/ReleaseNotesKit/HEAD/Sources/ReleaseNotesKit/Model/ITunesLookup.swift -------------------------------------------------------------------------------- /Sources/ReleaseNotesKit/Model/ReleaseNotesError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/ReleaseNotesKit/HEAD/Sources/ReleaseNotesKit/Model/ReleaseNotesError.swift -------------------------------------------------------------------------------- /Sources/ReleaseNotesKit/ReleaseNotesKit+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/ReleaseNotesKit/HEAD/Sources/ReleaseNotesKit/ReleaseNotesKit+.swift -------------------------------------------------------------------------------- /Sources/ReleaseNotesKit/ReleaseNotesKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/ReleaseNotesKit/HEAD/Sources/ReleaseNotesKit/ReleaseNotesKit.swift -------------------------------------------------------------------------------- /Sources/ReleaseNotesKit/View/ReleaseNotesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/ReleaseNotesKit/HEAD/Sources/ReleaseNotesKit/View/ReleaseNotesView.swift -------------------------------------------------------------------------------- /Tests/ReleaseNotesKitTests/ReleaseNotesKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/ReleaseNotesKit/HEAD/Tests/ReleaseNotesKitTests/ReleaseNotesKitTests.swift -------------------------------------------------------------------------------- /rnk-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/ReleaseNotesKit/HEAD/rnk-hero.png --------------------------------------------------------------------------------