From bf62aee98c9d736884207c1cf11871331d5e7742 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20B=C4=85k?= Date: Wed, 18 Sep 2024 21:30:25 +0200 Subject: [PATCH 1/5] Update ci.yml --- .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 7f4fdf9..ffeb461 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -155,7 +155,7 @@ jobs: uses: actions/checkout@v4 - name: Run Swift Macro Compatibility Check - uses: Matejkob/swift-macro-compatibility-check@main + uses: Matejkob/swift-macro-compatibility-check@separate-script-file with: run-tests: true major-versions-only: false From d9b85b9478179fbd6d7d94e1fad65aff097099c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20B=C4=85k?= Date: Thu, 19 Sep 2024 07:18:38 +0200 Subject: [PATCH 2/5] WIP --- Sources/SpyableMacro/Diagnostics/SpyableNoteMessage.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Sources/SpyableMacro/Diagnostics/SpyableNoteMessage.swift b/Sources/SpyableMacro/Diagnostics/SpyableNoteMessage.swift index 36272da..c87f4cc 100644 --- a/Sources/SpyableMacro/Diagnostics/SpyableNoteMessage.swift +++ b/Sources/SpyableMacro/Diagnostics/SpyableNoteMessage.swift @@ -25,8 +25,8 @@ enum SpyableNoteMessage: String, NoteMessage { } #else /// Unique identifier for each note message, aligning with the corresponding diagnostic message for clarity. - var fixItID: MessageID { - MessageID(domain: "SpyableMacro", id: rawValue + "NoteMessage") - } + //var fixItID: MessageID { + // MessageID(domain: "SpyableMacro", id: rawValue + "NoteMessage") + //} #endif } From 1a9fe543212d0eda48ba4cc172700d7d78693488 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20B=C4=85k?= Date: Fri, 20 Sep 2024 21:31:08 +0200 Subject: [PATCH 3/5] WIP --- Sources/SpyableMacro/Diagnostics/SpyableNoteMessage.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Sources/SpyableMacro/Diagnostics/SpyableNoteMessage.swift b/Sources/SpyableMacro/Diagnostics/SpyableNoteMessage.swift index c87f4cc..36272da 100644 --- a/Sources/SpyableMacro/Diagnostics/SpyableNoteMessage.swift +++ b/Sources/SpyableMacro/Diagnostics/SpyableNoteMessage.swift @@ -25,8 +25,8 @@ enum SpyableNoteMessage: String, NoteMessage { } #else /// Unique identifier for each note message, aligning with the corresponding diagnostic message for clarity. - //var fixItID: MessageID { - // MessageID(domain: "SpyableMacro", id: rawValue + "NoteMessage") - //} + var fixItID: MessageID { + MessageID(domain: "SpyableMacro", id: rawValue + "NoteMessage") + } #endif } From 66957947fcdff69869589147e0df8cf55cf02f3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20B=C4=85k?= Date: Fri, 20 Sep 2024 21:49:25 +0200 Subject: [PATCH 4/5] Use v1 version of the github action --- .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 ffeb461..29aee55 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -155,7 +155,7 @@ jobs: uses: actions/checkout@v4 - name: Run Swift Macro Compatibility Check - uses: Matejkob/swift-macro-compatibility-check@separate-script-file + uses: Matejkob/swift-macro-compatibility-check@v1 with: run-tests: true major-versions-only: false From 6e0d7545299a98ea818cc4d3e44cf9a1f4c31d2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20B=C4=85k?= Date: Fri, 20 Sep 2024 22:01:24 +0200 Subject: [PATCH 5/5] Update ci.yml --- .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 29aee55..96fedcb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -155,7 +155,7 @@ jobs: uses: actions/checkout@v4 - name: Run Swift Macro Compatibility Check - uses: Matejkob/swift-macro-compatibility-check@v1 + uses: Matejkob/swift-macro-compatibility-check@v1.0.0 with: run-tests: true major-versions-only: false