From bceefd9a5bf2918c28f230780635df85cfc34259 Mon Sep 17 00:00:00 2001 From: Joseph El Mallah Date: Sat, 6 Jun 2026 01:21:51 +0200 Subject: [PATCH 1/2] Fix compile error by making Tagged import public --- Sources/SQLiteData/Traits/Tagged.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/SQLiteData/Traits/Tagged.swift b/Sources/SQLiteData/Traits/Tagged.swift index c7fe36bb..e1354f63 100644 --- a/Sources/SQLiteData/Traits/Tagged.swift +++ b/Sources/SQLiteData/Traits/Tagged.swift @@ -1,5 +1,5 @@ #if SQLiteDataTagged - import Tagged + public import Tagged extension Tagged: IdentifierStringConvertible where RawValue: IdentifierStringConvertible { public init?(rawIdentifier: String) { From 3e9a9c31aceb0866ce6259cb62bb60fb0f29ff17 Mon Sep 17 00:00:00 2001 From: Brandon Williams Date: Fri, 5 Jun 2026 18:32:32 -0500 Subject: [PATCH 2/2] Enable SQLiteDataTagged trait in CI. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b8a02b1..c42128a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: - name: Build ${{ matrix.config }} without exports run: swift build -c ${{ matrix.config }} -Xswiftc -D -Xswiftc EXCLUDE_EXPORTS - name: Run ${{ matrix.config }} tests - run: swift test -c ${{ matrix.config }} + run: swift test -c ${{ matrix.config }} --traits SQLiteDataTagged examples: name: Examples