From 44cba7e1881cebcb0b071a85268dea98660cb68e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?shravan=20=7C=7C=20=E0=A4=B6=E0=A5=8D=E0=A4=B0van?= Date: Wed, 3 Sep 2025 12:40:29 +0530 Subject: [PATCH 1/3] ci: triggering release minor --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c662148..6230522 100644 --- a/README.md +++ b/README.md @@ -67,3 +67,4 @@ make watch
+ From cee346d1ee8862ec58f9633a78c8f959dd3e061b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?shravan=20=7C=7C=20=E0=A4=B6=E0=A5=8D=E0=A4=B0van?= Date: Wed, 3 Sep 2025 12:47:08 +0530 Subject: [PATCH 2/3] Fix formatting issues in README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6230522..925ebe6 100644 --- a/README.md +++ b/README.md @@ -68,3 +68,4 @@ make watch + From f1a0409879f398fbf8e9bd5b724c3326ffa97b37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?shravan=20=7C=7C=20=E0=A4=B6=E0=A5=8D=E0=A4=B0van?= Date: Wed, 3 Sep 2025 16:44:24 +0530 Subject: [PATCH 3/3] chore: refactor custom_errors.go and add TODO for error type --- internal/exercises/templates/27_custom_errors/custom_errors.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/internal/exercises/templates/27_custom_errors/custom_errors.go b/internal/exercises/templates/27_custom_errors/custom_errors.go index eebe237..e3a5e42 100644 --- a/internal/exercises/templates/27_custom_errors/custom_errors.go +++ b/internal/exercises/templates/27_custom_errors/custom_errors.go @@ -1,8 +1,5 @@ package custom_errors -import ( - "fmt" -) // TODO: // - Define a custom error type that implements the error interface.