diff --git a/go.mod b/go.mod index eecc06b7..80fe5d85 100644 --- a/go.mod +++ b/go.mod @@ -11,7 +11,7 @@ require ( github.com/asottile/dockerfile v3.1.0+incompatible github.com/blang/semver v3.5.1+incompatible github.com/briandowns/spinner v1.23.2 - github.com/codefly-dev/core v0.2.80 + github.com/codefly-dev/core v0.2.82 github.com/codefly-dev/golor v0.1.3 github.com/codefly-dev/llm v0.1.0 github.com/codefly-dev/sdk-go v0.1.58 diff --git a/go.sum b/go.sum index ca6e17f4..7fae8bd0 100644 --- a/go.sum +++ b/go.sum @@ -95,8 +95,8 @@ github.com/clipperhouse/uax29/v2 v2.7.0 h1:+gs4oBZ2gPfVrKPthwbMzWZDaAFPGYK72F0NJ github.com/clipperhouse/uax29/v2 v2.7.0/go.mod h1:EFJ2TJMRUaplDxHKj1qAEhCtQPW2tJSwu5BF98AuoVM= github.com/cloudflare/circl v1.6.3 h1:9GPOhQGF9MCYUeXyMYlqTR6a5gTrgR/fBLXvUgtVcg8= github.com/cloudflare/circl v1.6.3/go.mod h1:2eXP6Qfat4O/Yhh8BznvKnJ+uzEoTQ6jVKJRn81BiS4= -github.com/codefly-dev/core v0.2.80 h1:RwBAWd+7J2ZHHY5RSllfPNlr1wP9CNTmVFQz9UM3rog= -github.com/codefly-dev/core v0.2.80/go.mod h1:hNxTk7ZnR5AU8imfvNJcGpoULQ1uzML5M3E4/RffWU4= +github.com/codefly-dev/core v0.2.82 h1:CKvyxYPCsVs3lKPL4y+OxE12C4hbZCi01JfGVZXSTIs= +github.com/codefly-dev/core v0.2.82/go.mod h1:hNxTk7ZnR5AU8imfvNJcGpoULQ1uzML5M3E4/RffWU4= github.com/codefly-dev/golor v0.1.3 h1:xmo+ceyJFRYZdvpWE2fNd0jeaadp/Ibm1BnganiGKOc= github.com/codefly-dev/golor v0.1.3/go.mod h1:sl/u/K1l7J0Pr3xyVZp8fOJYQItKKst1No9JqgzLLoY= github.com/codefly-dev/gortk v0.2.0 h1:7bOlS5valYz2zil+fZctQNcPCYBcPj86abcw9N8h1hQ= diff --git a/pkg/cli/info.yaml b/pkg/cli/info.yaml index 5d47cf64..7e7b8215 100644 --- a/pkg/cli/info.yaml +++ b/pkg/cli/info.yaml @@ -1 +1 @@ -version: 0.1.82 +version: 0.1.83 diff --git a/pkg/sourceworkspace/source.go b/pkg/sourceworkspace/source.go index e4ce0525..dd03555c 100644 --- a/pkg/sourceworkspace/source.go +++ b/pkg/sourceworkspace/source.go @@ -16,15 +16,15 @@ import ( ) const ( - GenericGoPluginVersion = "0.0.26" - GenericPythonPluginVersion = "0.0.30" - GenericPluginVersion = "0.0.20" + GenericGoPluginVersion = "0.0.27" + GenericPythonPluginVersion = "0.0.31" + GenericPluginVersion = "0.0.21" // NodePluginVersion is published under the historical nextjs agent name, // but owns generic Node.js/TypeScript validation as well as Next.js-specific // lifecycle behavior selected from the package manifest. - NodePluginVersion = "0.0.133" - RustPluginVersion = "0.0.22" - SwiftPluginVersion = "0.0.14" + NodePluginVersion = "0.0.134" + RustPluginVersion = "0.0.24" + SwiftPluginVersion = "0.0.16" pythonSetupMarker = "setup.py" )