diff --git a/Package.swift b/Package.swift index 70bde7ef..00c6beda 100644 --- a/Package.swift +++ b/Package.swift @@ -2,7 +2,7 @@ import PackageDescription let package = Package( - name: "SQLite.swift", + name: "SQLiteSwift.swift", platforms: [ .iOS(.v11), .macOS(.v10_13), @@ -11,13 +11,13 @@ let package = Package( ], products: [ .library( - name: "SQLite", - targets: ["SQLite"] + name: "SQLiteSwift", + targets: ["SQLiteSwift"] ) ], targets: [ .target( - name: "SQLite", + name: "SQLiteSwift", exclude: [ "Info.plist" ] @@ -25,7 +25,7 @@ let package = Package( .testTarget( name: "SQLiteTests", dependencies: [ - "SQLite" + "SQLiteSwift" ], path: "Tests/SQLiteTests", exclude: [ diff --git a/README.md b/README.md index e6e5a894..39703c14 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +#Changes from LuminiCode: Renamed package, library and some folders. + # SQLite.swift ![Build Status][GitHubActionBadge] [![CocoaPods Version][CocoaPodsVersionBadge]][CocoaPodsVersionLink] [![Swift5 compatible][Swift5Badge]][Swift5Link] [![Platform][PlatformBadge]][PlatformLink] [![Carthage compatible][CartagheBadge]][CarthageLink] [![Join the chat at https://gitter.im/stephencelis/SQLite.swift][GitterBadge]][GitterLink] diff --git a/Sources/SQLite/Core/Backup.swift b/Sources/SQLiteSwift/Core/Backup.swift similarity index 100% rename from Sources/SQLite/Core/Backup.swift rename to Sources/SQLiteSwift/Core/Backup.swift diff --git a/Sources/SQLite/Core/Blob.swift b/Sources/SQLiteSwift/Core/Blob.swift similarity index 100% rename from Sources/SQLite/Core/Blob.swift rename to Sources/SQLiteSwift/Core/Blob.swift diff --git a/Sources/SQLite/Core/Connection+Aggregation.swift b/Sources/SQLiteSwift/Core/Connection+Aggregation.swift similarity index 100% rename from Sources/SQLite/Core/Connection+Aggregation.swift rename to Sources/SQLiteSwift/Core/Connection+Aggregation.swift diff --git a/Sources/SQLite/Core/Connection+Attach.swift b/Sources/SQLiteSwift/Core/Connection+Attach.swift similarity index 100% rename from Sources/SQLite/Core/Connection+Attach.swift rename to Sources/SQLiteSwift/Core/Connection+Attach.swift diff --git a/Sources/SQLite/Core/Connection+Pragmas.swift b/Sources/SQLiteSwift/Core/Connection+Pragmas.swift similarity index 100% rename from Sources/SQLite/Core/Connection+Pragmas.swift rename to Sources/SQLiteSwift/Core/Connection+Pragmas.swift diff --git a/Sources/SQLite/Core/Connection.swift b/Sources/SQLiteSwift/Core/Connection.swift similarity index 100% rename from Sources/SQLite/Core/Connection.swift rename to Sources/SQLiteSwift/Core/Connection.swift diff --git a/Sources/SQLite/Core/Errors.swift b/Sources/SQLiteSwift/Core/Errors.swift similarity index 100% rename from Sources/SQLite/Core/Errors.swift rename to Sources/SQLiteSwift/Core/Errors.swift diff --git a/Sources/SQLite/Core/Result.swift b/Sources/SQLiteSwift/Core/Result.swift similarity index 100% rename from Sources/SQLite/Core/Result.swift rename to Sources/SQLiteSwift/Core/Result.swift diff --git a/Sources/SQLite/Core/SQLiteFeature.swift b/Sources/SQLiteSwift/Core/SQLiteFeature.swift similarity index 100% rename from Sources/SQLite/Core/SQLiteFeature.swift rename to Sources/SQLiteSwift/Core/SQLiteFeature.swift diff --git a/Sources/SQLite/Core/SQLiteVersion.swift b/Sources/SQLiteSwift/Core/SQLiteVersion.swift similarity index 100% rename from Sources/SQLite/Core/SQLiteVersion.swift rename to Sources/SQLiteSwift/Core/SQLiteVersion.swift diff --git a/Sources/SQLite/Core/Statement.swift b/Sources/SQLiteSwift/Core/Statement.swift similarity index 100% rename from Sources/SQLite/Core/Statement.swift rename to Sources/SQLiteSwift/Core/Statement.swift diff --git a/Sources/SQLite/Core/URIQueryParameter.swift b/Sources/SQLiteSwift/Core/URIQueryParameter.swift similarity index 100% rename from Sources/SQLite/Core/URIQueryParameter.swift rename to Sources/SQLiteSwift/Core/URIQueryParameter.swift diff --git a/Sources/SQLite/Core/Value.swift b/Sources/SQLiteSwift/Core/Value.swift similarity index 100% rename from Sources/SQLite/Core/Value.swift rename to Sources/SQLiteSwift/Core/Value.swift diff --git a/Sources/SQLite/Extensions/Cipher.swift b/Sources/SQLiteSwift/Extensions/Cipher.swift similarity index 100% rename from Sources/SQLite/Extensions/Cipher.swift rename to Sources/SQLiteSwift/Extensions/Cipher.swift diff --git a/Sources/SQLite/Extensions/FTS4.swift b/Sources/SQLiteSwift/Extensions/FTS4.swift similarity index 100% rename from Sources/SQLite/Extensions/FTS4.swift rename to Sources/SQLiteSwift/Extensions/FTS4.swift diff --git a/Sources/SQLite/Extensions/FTS5.swift b/Sources/SQLiteSwift/Extensions/FTS5.swift similarity index 100% rename from Sources/SQLite/Extensions/FTS5.swift rename to Sources/SQLiteSwift/Extensions/FTS5.swift diff --git a/Sources/SQLite/Extensions/RTree.swift b/Sources/SQLiteSwift/Extensions/RTree.swift similarity index 100% rename from Sources/SQLite/Extensions/RTree.swift rename to Sources/SQLiteSwift/Extensions/RTree.swift diff --git a/Sources/SQLite/Foundation.swift b/Sources/SQLiteSwift/Foundation.swift similarity index 100% rename from Sources/SQLite/Foundation.swift rename to Sources/SQLiteSwift/Foundation.swift diff --git a/Sources/SQLite/Helpers.swift b/Sources/SQLiteSwift/Helpers.swift similarity index 100% rename from Sources/SQLite/Helpers.swift rename to Sources/SQLiteSwift/Helpers.swift diff --git a/Sources/SQLite/Info.plist b/Sources/SQLiteSwift/Info.plist similarity index 100% rename from Sources/SQLite/Info.plist rename to Sources/SQLiteSwift/Info.plist diff --git a/Sources/SQLite/SQLite.h b/Sources/SQLiteSwift/SQLite.h similarity index 100% rename from Sources/SQLite/SQLite.h rename to Sources/SQLiteSwift/SQLite.h diff --git a/Sources/SQLite/Schema/Connection+Schema.swift b/Sources/SQLiteSwift/Schema/Connection+Schema.swift similarity index 100% rename from Sources/SQLite/Schema/Connection+Schema.swift rename to Sources/SQLiteSwift/Schema/Connection+Schema.swift diff --git a/Sources/SQLite/Schema/SchemaChanger.swift b/Sources/SQLiteSwift/Schema/SchemaChanger.swift similarity index 100% rename from Sources/SQLite/Schema/SchemaChanger.swift rename to Sources/SQLiteSwift/Schema/SchemaChanger.swift diff --git a/Sources/SQLite/Schema/SchemaDefinitions.swift b/Sources/SQLiteSwift/Schema/SchemaDefinitions.swift similarity index 100% rename from Sources/SQLite/Schema/SchemaDefinitions.swift rename to Sources/SQLiteSwift/Schema/SchemaDefinitions.swift diff --git a/Sources/SQLite/Schema/SchemaReader.swift b/Sources/SQLiteSwift/Schema/SchemaReader.swift similarity index 100% rename from Sources/SQLite/Schema/SchemaReader.swift rename to Sources/SQLiteSwift/Schema/SchemaReader.swift diff --git a/Sources/SQLite/Typed/AggregateFunctions.swift b/Sources/SQLiteSwift/Typed/AggregateFunctions.swift similarity index 100% rename from Sources/SQLite/Typed/AggregateFunctions.swift rename to Sources/SQLiteSwift/Typed/AggregateFunctions.swift diff --git a/Sources/SQLite/Typed/Coding.swift b/Sources/SQLiteSwift/Typed/Coding.swift similarity index 100% rename from Sources/SQLite/Typed/Coding.swift rename to Sources/SQLiteSwift/Typed/Coding.swift diff --git a/Sources/SQLite/Typed/Collation.swift b/Sources/SQLiteSwift/Typed/Collation.swift similarity index 100% rename from Sources/SQLite/Typed/Collation.swift rename to Sources/SQLiteSwift/Typed/Collation.swift diff --git a/Sources/SQLite/Typed/CoreFunctions.swift b/Sources/SQLiteSwift/Typed/CoreFunctions.swift similarity index 100% rename from Sources/SQLite/Typed/CoreFunctions.swift rename to Sources/SQLiteSwift/Typed/CoreFunctions.swift diff --git a/Sources/SQLite/Typed/CustomFunctions.swift b/Sources/SQLiteSwift/Typed/CustomFunctions.swift similarity index 100% rename from Sources/SQLite/Typed/CustomFunctions.swift rename to Sources/SQLiteSwift/Typed/CustomFunctions.swift diff --git a/Sources/SQLite/Typed/DateAndTimeFunctions.swift b/Sources/SQLiteSwift/Typed/DateAndTimeFunctions.swift similarity index 100% rename from Sources/SQLite/Typed/DateAndTimeFunctions.swift rename to Sources/SQLiteSwift/Typed/DateAndTimeFunctions.swift diff --git a/Sources/SQLite/Typed/Expression.swift b/Sources/SQLiteSwift/Typed/Expression.swift similarity index 100% rename from Sources/SQLite/Typed/Expression.swift rename to Sources/SQLiteSwift/Typed/Expression.swift diff --git a/Sources/SQLite/Typed/Operators.swift b/Sources/SQLiteSwift/Typed/Operators.swift similarity index 100% rename from Sources/SQLite/Typed/Operators.swift rename to Sources/SQLiteSwift/Typed/Operators.swift diff --git a/Sources/SQLite/Typed/Query+with.swift b/Sources/SQLiteSwift/Typed/Query+with.swift similarity index 100% rename from Sources/SQLite/Typed/Query+with.swift rename to Sources/SQLiteSwift/Typed/Query+with.swift diff --git a/Sources/SQLite/Typed/Query.swift b/Sources/SQLiteSwift/Typed/Query.swift similarity index 100% rename from Sources/SQLite/Typed/Query.swift rename to Sources/SQLiteSwift/Typed/Query.swift diff --git a/Sources/SQLite/Typed/Schema.swift b/Sources/SQLiteSwift/Typed/Schema.swift similarity index 100% rename from Sources/SQLite/Typed/Schema.swift rename to Sources/SQLiteSwift/Typed/Schema.swift diff --git a/Sources/SQLite/Typed/Setter.swift b/Sources/SQLiteSwift/Typed/Setter.swift similarity index 100% rename from Sources/SQLite/Typed/Setter.swift rename to Sources/SQLiteSwift/Typed/Setter.swift