Skip to content

Commit 7135fc1

Browse files
committed
DuckDuckGo GRDB.swift 3.0.0 (GRDB 7.0.0-beta.6, SQLCipher 4.6.1)
1 parent e0b43b5 commit 7135fc1

File tree

3 files changed

+32
-17
lines changed

3 files changed

+32
-17
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ let package = Package(
1515
targets: [
1616
.binaryTarget(
1717
name: "GRDB",
18-
url: "https://github.com/DuckDuckGo/GRDB.swift/releases/download/2.4.2/GRDB.xcframework.zip",
19-
checksum: "5380265b0e70f0ed28eb1e12640eb6cde5e4bfd39893c86b31f8d17126887174"
18+
url: "https://github.com/DuckDuckGo/GRDB.swift/releases/download/3.0.0/GRDB.xcframework.zip",
19+
checksum: "eaf11803cd5af81a1abe8ecf1e652f40fdbd0ed1f87865d869e545feab5bcbd4"
2020
),
2121
.target(name: "_GRDBDummy")
2222
]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ The default branch for this repository is `main` (as opposed to upstream's `mast
77

88
## Version
99

10-
* This Package: *2.4.2*
11-
* GRDB: *6.29.3*
10+
* This Package: *3.0.0*
11+
* GRDB: *7.0.0-beta.6*
1212
* SQLCipher: *4.6.1*
1313

1414
## Contributions

assets/xcodeproj.patch

Lines changed: 28 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
diff --git a/GRDB.xcodeproj/project.pbxproj b/GRDB.xcodeproj/project.pbxproj
2-
index 089a9fd2a..6738f93bc 100755
2+
index bf103ccf1..79536fafc 100755
33
--- a/GRDB.xcodeproj/project.pbxproj
44
+++ b/GRDB.xcodeproj/project.pbxproj
55
@@ -7,6 +7,8 @@
@@ -11,33 +11,48 @@ index 089a9fd2a..6738f93bc 100755
1111
4E13D2F32769B87F0037588C /* DatabaseBackupProgress.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E13D2F22769B87F0037588C /* DatabaseBackupProgress.swift */; };
1212
4ED4BB592731DD25008B127D /* BackupTestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4ED4BB582731DD25008B127D /* BackupTestCase.swift */; };
1313
56012B552573EED000B4925B /* CommonTableExpressionTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56012B542573EED000B4925B /* CommonTableExpressionTests.swift */; };
14-
@@ -398,6 +400,8 @@
14+
@@ -434,6 +436,8 @@
1515
/* End PBXContainerItemProxy section */
1616

1717
/* Begin PBXFileReference section */
18-
+ 37DB5E9129A1698F001DE96C /* sqlite3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sqlite3.c; sourceTree = "<group>"; };
19-
+ 37DB5E9229A1698F001DE96C /* sqlite3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sqlite3.h; sourceTree = "<group>"; };
18+
+ 37DB5E9129A1698F001DE96C /* sqlite3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sqlite3.c; path = GRDB/sqlite3.c; sourceTree = "<group>"; };
19+
+ 37DB5E9229A1698F001DE96C /* sqlite3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sqlite3.h; path = GRDB/sqlite3.h; sourceTree = "<group>"; };
2020
4E13D2F22769B87F0037588C /* DatabaseBackupProgress.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DatabaseBackupProgress.swift; sourceTree = "<group>"; };
2121
4ED4BB582731DD25008B127D /* BackupTestCase.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BackupTestCase.swift; sourceTree = "<group>"; };
2222
56012B542573EED000B4925B /* CommonTableExpressionTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommonTableExpressionTests.swift; sourceTree = "<group>"; };
23-
@@ -1608,6 +1612,8 @@
24-
DC37742D19C8CC90004FCF85 /* GRDB */ = {
23+
@@ -1700,6 +1704,15 @@
24+
name = Foundation;
25+
sourceTree = "<group>";
26+
};
27+
+ CD5860E82CCFBBA900330A4C /* Recovered References */ = {
28+
+ isa = PBXGroup;
29+
+ children = (
30+
+ 37DB5E9229A1698F001DE96C /* sqlite3.h */,
31+
+ 37DB5E9129A1698F001DE96C /* sqlite3.c */,
32+
+ );
33+
+ name = "Recovered References";
34+
+ sourceTree = "<group>";
35+
+ };
36+
DC10500F19C904DD00D8CA30 /* Tests */ = {
2537
isa = PBXGroup;
2638
children = (
27-
+ 37DB5E9129A1698F001DE96C /* sqlite3.c */,
28-
+ 37DB5E9229A1698F001DE96C /* sqlite3.h */,
29-
56A2FA3524424D2A00E97D23 /* Export.swift */,
30-
566DDE0C288D763C0000DCFB /* Fixits.swift */,
31-
56A2386F1B9C75030082EB20 /* Core */,
32-
@@ -1644,6 +1650,7 @@
39+
@@ -1718,6 +1731,7 @@
40+
DC37742D19C8CC90004FCF85 /* GRDB */,
41+
DC10500F19C904DD00D8CA30 /* Tests */,
42+
DC3773F419C8CBB3004FCF85 /* Products */,
43+
+ CD5860E82CCFBBA900330A4C /* Recovered References */,
44+
);
45+
indentWidth = 4;
46+
sourceTree = "<group>";
47+
@@ -1784,6 +1798,7 @@
3348
isa = PBXHeadersBuildPhase;
3449
buildActionMask = 2147483647;
3550
files = (
3651
+ 37DB5E9429A1698F001DE96C /* sqlite3.h in Headers */,
3752
567DAF1C1EAB61ED00FC0928 /* grdb_config.h in Headers */,
3853
DC3773F919C8CBB3004FCF85 /* GRDB.h in Headers */,
3954
DC2393C81ABE35F8003FF113 /* GRDB-Bridging.h in Headers */,
40-
@@ -2021,6 +2028,7 @@
55+
@@ -2177,6 +2192,7 @@
4156
5656A8B02295BFD7001FF3FF /* TableRecord+QueryInterfaceRequest.swift in Sources */,
4257
5613ED4421A95B2C00DC7A68 /* ValueReducer.swift in Sources */,
4358
5636E9BC1D22574100B9B05F /* FetchRequest.swift in Sources */,

0 commit comments

Comments
 (0)