Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #133

Merged
merged 3 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DeviceGuru.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'DeviceGuru'
spec.version = '10.0.9'
spec.version = '10.0.10'
spec.license = 'MIT'
spec.summary = 'DeviceGuru helps identifying the exact hardware type of the device. e.g. iPhone 6 or iPhone 6s.'
spec.homepage = 'https://github.com/InderKumarRathore/DeviceGuru'
Expand Down
2 changes: 1 addition & 1 deletion DeviceGuruTests/DeviceGuruTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ final class DeviceGuruTests: XCTestCase {
private var sut: DeviceGuruImplementation!
private var localStorageMock: LocalStorageMock!
private var hardwareDetailProviderMock: HardwareDetailProviderMock!
private let currentLibraryVersion = "10.0.9"
private let currentLibraryVersion = "10.0.10"

override func setUp() {
super.setUp()
Expand Down
2 changes: 1 addition & 1 deletion Generator/GeneratorDeviceList.plist
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@
<key>iPhone17,2</key>
<dict>
<key>name</key>
<string>iPhone_16 Pro Max</string>
<string>iPhone 16 Pro Max</string>
<key>enum</key>
<string>IPHONE_16_PRO_MAX</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion Sources/DeviceGuruImplementation+Extension.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
public extension DeviceGuruImplementation {

/// This should be same as cocoa pod version
static var libraryVersion: String { "10.0.9" }
static var libraryVersion: String { "10.0.10" }

var hardware: Hardware {

Expand Down
2 changes: 1 addition & 1 deletion Sources/DeviceList.plist
Original file line number Diff line number Diff line change
Expand Up @@ -870,7 +870,7 @@
<key>iPhone17,2</key>
<dict>
<key>name</key>
<string>iPhone_16 Pro Max</string>
<string>iPhone 16 Pro Max</string>
</dict>
<key>iPhone17,3</key>
<dict>
Expand Down