From 6c9ed0f34fe4ab99e9d2a3a86945972c9111e5be Mon Sep 17 00:00:00 2001 From: segersniels Date: Tue, 1 Oct 2024 11:58:40 +0200 Subject: [PATCH 1/2] chore: adjust prompt slightly --- prompt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prompt.go b/prompt.go index 49b388d..5442b5f 100644 --- a/prompt.go +++ b/prompt.go @@ -11,7 +11,7 @@ import ( const SYSTEM_MESSAGE = `You will be asked to write a concise GitHub PR description based on a provided git diff. Analyze the code changes and provide a concise explanation of the changes, their context and why they were made. If the provided message is not a diff respond with an appropriate message. -Don't surround your description in backticks but still write GitHub supported markdown.` +Answer with only the description in GitHub supported markdown.` var FILES_TO_IGNORE = []string{ "package-lock.json", From 47b4b2ef67611b08f9ad7adaf06f7bcfe7377d98 Mon Sep 17 00:00:00 2001 From: segersniels Date: Tue, 1 Oct 2024 11:59:13 +0200 Subject: [PATCH 2/2] chore(release): 2.5.1 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fa3dbc8..29324e1 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: build clean run version BINARY_NAME=propr -VERSION=2.5.0 +VERSION=2.5.1 BUILD_DIR=bin GOFLAGS=CGO_ENABLED=0