From d270ab775216fd0ac42ca85d347d7c51f60e0511 Mon Sep 17 00:00:00 2001 From: pptx704 Date: Tue, 21 Apr 2026 15:54:04 +0600 Subject: [PATCH] Version bump --- VERSION_CP | 2 +- db/migrations/embed.go | 2 +- internal/api/openapi.yaml | 2 +- pkg/cpextension/extension.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/VERSION_CP b/VERSION_CP index d917d3e..b1e80bb 100644 --- a/VERSION_CP +++ b/VERSION_CP @@ -1 +1 @@ -0.1.2 +0.1.3 diff --git a/db/migrations/embed.go b/db/migrations/embed.go index d5bbfcb..8fd901b 100644 --- a/db/migrations/embed.go +++ b/db/migrations/embed.go @@ -1,5 +1,5 @@ // Package migrations embeds the SQL migration files so that external modules -// (such as the enterprise edition) can access them programmatically. +// (such as the cloud edition) can access them programmatically. package migrations import "embed" diff --git a/internal/api/openapi.yaml b/internal/api/openapi.yaml index 4cd6959..8d3861c 100644 --- a/internal/api/openapi.yaml +++ b/internal/api/openapi.yaml @@ -2,7 +2,7 @@ openapi: "3.1.0" info: title: Wrenn API description: MicroVM-based code execution platform API. - version: "0.1.2" + version: "0.1.3" servers: - url: http://localhost:8080 diff --git a/pkg/cpextension/extension.go b/pkg/cpextension/extension.go index 7682aca..b0f456f 100644 --- a/pkg/cpextension/extension.go +++ b/pkg/cpextension/extension.go @@ -36,7 +36,7 @@ type ServerContext struct { Config config.Config } -// Extension allows enterprise (or any external) code to plug additional +// Extension allows cloud (or any external) code to plug additional // routes and background workers into the control plane without modifying // the core server. type Extension interface {