Skip to content

Commit 76aaedd

Browse files
committed
Update licensing information
1 parent 7cd9d13 commit 76aaedd

25 files changed

+32
-34
lines changed

Example/Example.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@
364364
"$(inherited)",
365365
"@executable_path/Frameworks",
366366
);
367-
PRODUCT_BUNDLE_IDENTIFIER = eu.liamnichols.Example;
367+
PRODUCT_BUNDLE_IDENTIFIER = com.cookpad.Example;
368368
PRODUCT_NAME = "$(TARGET_NAME)";
369369
SWIFT_VERSION = 5.0;
370370
TARGETED_DEVICE_FAMILY = "1,2";
@@ -385,7 +385,7 @@
385385
"$(inherited)",
386386
"@executable_path/Frameworks",
387387
);
388-
PRODUCT_BUNDLE_IDENTIFIER = eu.liamnichols.Example;
388+
PRODUCT_BUNDLE_IDENTIFIER = com.cookpad.Example;
389389
PRODUCT_NAME = "$(TARGET_NAME)";
390390
SWIFT_VERSION = 5.0;
391391
TARGETED_DEVICE_FAMILY = "1,2";
@@ -402,7 +402,7 @@
402402
"@executable_path/Frameworks",
403403
"@loader_path/Frameworks",
404404
);
405-
PRODUCT_BUNDLE_IDENTIFIER = eu.liamnichols.ExampleUITests;
405+
PRODUCT_BUNDLE_IDENTIFIER = com.cookpad.ExampleUITests;
406406
PRODUCT_NAME = "$(TARGET_NAME)";
407407
SWIFT_VERSION = 5.0;
408408
TARGETED_DEVICE_FAMILY = "1,2";
@@ -420,7 +420,7 @@
420420
"@executable_path/Frameworks",
421421
"@loader_path/Frameworks",
422422
);
423-
PRODUCT_BUNDLE_IDENTIFIER = eu.liamnichols.ExampleUITests;
423+
PRODUCT_BUNDLE_IDENTIFIER = com.cookpad.ExampleUITests;
424424
PRODUCT_NAME = "$(TARGET_NAME)";
425425
SWIFT_VERSION = 5.0;
426426
TARGETED_DEVICE_FAMILY = "1,2";

Example/Example/ContentView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// MIT License
22
///
3-
/// Copyright (c) 2021 Liam Nichols
3+
/// Copyright (c) 2021 Cookpad Inc.
44
///
55
/// Permission is hereby granted, free of charge, to any person obtaining a copy
66
/// of this software and associated documentation files (the "Software"), to deal

Example/Example/ContentViewModel.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// MIT License
22
///
3-
/// Copyright (c) 2021 Liam Nichols
3+
/// Copyright (c) 2021 Cookpad Inc.
44
///
55
/// Permission is hereby granted, free of charge, to any person obtaining a copy
66
/// of this software and associated documentation files (the "Software"), to deal

Example/Example/ExampleApp.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// MIT License
22
///
3-
/// Copyright (c) 2021 Liam Nichols
3+
/// Copyright (c) 2021 Cookpad Inc.
44
///
55
/// Permission is hereby granted, free of charge, to any person obtaining a copy
66
/// of this software and associated documentation files (the "Software"), to deal

Example/ExampleKit/Sources/ExampleKit/ExamplePreferences.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// MIT License
22
///
3-
/// Copyright (c) 2021 Liam Nichols
3+
/// Copyright (c) 2021 Cookpad Inc.
44
///
55
/// Permission is hereby granted, free of charge, to any person obtaining a copy
66
/// of this software and associated documentation files (the "Software"), to deal

Example/ExampleUITests/ExampleUITests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// MIT License
22
///
3-
/// Copyright (c) 2021 Liam Nichols
3+
/// Copyright (c) 2021 Cookpad Inc.
44
///
55
/// Permission is hereby granted, free of charge, to any person obtaining a copy
66
/// of this software and associated documentation files (the "Software"), to deal

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Liam Nichols
3+
Copyright (c) 2021 Cookpad Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,8 @@ Add the following to your **Package.swift**
297297

298298
```swift
299299
dependencies: [
300-
.package(url: "https://github.com/liamnichols/swift-user-defaults.git", .upToNextMajor(from: "0.1.0"))
300+
.package(url: "https://github.com/cookpad/swift-user-defaults.git", .upToNextMajor(from: "0.1.0"))
301301
]
302302
```
303303

304-
Or use the https://github.com/liamnichols/swift-user-defaults.git repository link in Xcode.
304+
Or use the https://github.com/cookpad/swift-user-defaults.git repository link in Xcode.

Sources/SwiftUserDefaults/AppStorage+Key.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// MIT License
22
///
3-
/// Copyright (c) 2021 Liam Nichols
3+
/// Copyright (c) 2021 Cookpad Inc.
44
///
55
/// Permission is hereby granted, free of charge, to any person obtaining a copy
66
/// of this software and associated documentation files (the "Software"), to deal

Sources/SwiftUserDefaults/UserDefault.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// MIT License
22
///
3-
/// Copyright (c) 2021 Liam Nichols
3+
/// Copyright (c) 2021 Cookpad Inc.
44
///
55
/// Permission is hereby granted, free of charge, to any person obtaining a copy
66
/// of this software and associated documentation files (the "Software"), to deal
@@ -49,7 +49,7 @@ public struct UserDefault<Value> {
4949
}
5050

5151
/// Observes changes to the specified user default in the underlying database.
52-
///
52+
///
5353
/// - Parameter handler: A closure invoked whenever the observed value is modified.
5454
/// - Returns: A token object to be used to invalidate the observation by either deallocating the value or calling `invalidate()`.
5555
public func addObserver(handler: @escaping (UserDefaults.Change<Value>) -> Void) -> UserDefaults.Observation {

0 commit comments

Comments
 (0)