From 953219c214d5cc2fac305e5bc1954cf411b113af Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Sat, 25 May 2024 21:38:45 +0000 Subject: [PATCH] fix fluentci upgrade, enable --unstable-kv --- README.md | 2 +- src/cmd/upgrade.ts | 1 + src/consts.ts | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8259069..d05e3ed 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ fluentci # Run the pipeline fluentci --help Usage: fluentci [pipeline] [jobs...] -Version: 0.14.0 +Version: 0.14.1 Description: diff --git a/src/cmd/upgrade.ts b/src/cmd/upgrade.ts index 5c1972d..7bb7b7f 100644 --- a/src/cmd/upgrade.ts +++ b/src/cmd/upgrade.ts @@ -21,6 +21,7 @@ async function upgrade() { const command = new Deno.Command("deno", { args: [ "install", + "--unstable-kv", "-A", "-r", "--import-map=https://deno.land/x/fluentci/import_map.json", diff --git a/src/consts.ts b/src/consts.ts index c17eb3f..d1989be 100644 --- a/src/consts.ts +++ b/src/consts.ts @@ -1,6 +1,6 @@ import { dir } from "../deps.ts"; -export const VERSION = "0.14.0"; +export const VERSION = "0.14.1"; export const BASE_URL = "https://api.fluentci.io/v1";