From 89cda65f5da46041dc33f55639330af20f2bfa9b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 06:01:49 +0000 Subject: [PATCH] chore: bump @denops/std from 7.3.0 to 7.3.1 --- denops/futago/dispatcher/git_commit.ts | 4 ++-- denops/futago/dispatcher/load_chat.ts | 8 ++++---- denops/futago/dispatcher/open_history.ts | 6 +++--- denops/futago/dispatcher/send_chat_message.ts | 6 +++--- denops/futago/dispatcher/start_chat.ts | 8 ++++---- denops/futago/main.ts | 10 +++++----- denops/futago/util.ts | 4 ++-- 7 files changed, 23 insertions(+), 23 deletions(-) diff --git a/denops/futago/dispatcher/git_commit.ts b/denops/futago/dispatcher/git_commit.ts index 185b143..04411d4 100644 --- a/denops/futago/dispatcher/git_commit.ts +++ b/denops/futago/dispatcher/git_commit.ts @@ -4,8 +4,8 @@ // Last Change : 2024/11/02 23:41:19. // ============================================================================= -import * as fn from "jsr:@denops/std@7.3.0/function"; -import type { Denops } from "jsr:@denops/std@7.3.0"; +import * as fn from "jsr:@denops/std@7.3.1/function"; +import type { Denops } from "jsr:@denops/std@7.3.1"; import { DEFAULT_MODEL, GIT_COMMIT_PROMPT } from "../consts.ts"; import { Futago } from "../futago.ts"; import { GenerationConfigSchema } from "../schema/generation_config.ts"; diff --git a/denops/futago/dispatcher/load_chat.ts b/denops/futago/dispatcher/load_chat.ts index beb56cf..62cb404 100644 --- a/denops/futago/dispatcher/load_chat.ts +++ b/denops/futago/dispatcher/load_chat.ts @@ -4,10 +4,10 @@ // Last Change : 2024/11/04 01:16:38. // ============================================================================= -import * as batch from "jsr:@denops/std@7.3.0/batch"; -import * as buffer from "jsr:@denops/std@7.3.0/buffer"; -import * as fn from "jsr:@denops/std@7.3.0/function"; -import type { Denops } from "jsr:@denops/std@7.3.0"; +import * as batch from "jsr:@denops/std@7.3.1/batch"; +import * as buffer from "jsr:@denops/std@7.3.1/buffer"; +import * as fn from "jsr:@denops/std@7.3.1/function"; +import type { Denops } from "jsr:@denops/std@7.3.1"; import { Futago } from "../futago.ts"; import { basename, extname } from "jsr:@std/path@1.0.8"; import { getDb } from "../db.ts"; diff --git a/denops/futago/dispatcher/open_history.ts b/denops/futago/dispatcher/open_history.ts index 6a74356..8e690fe 100644 --- a/denops/futago/dispatcher/open_history.ts +++ b/denops/futago/dispatcher/open_history.ts @@ -4,9 +4,9 @@ // Last Change : 2024/11/02 19:07:09. // ============================================================================= -import * as batch from "jsr:@denops/std@7.3.0/batch"; -import * as fn from "jsr:@denops/std@7.3.0/function"; -import type { Denops } from "jsr:@denops/std@7.3.0"; +import * as batch from "jsr:@denops/std@7.3.1/batch"; +import * as fn from "jsr:@denops/std@7.3.1/function"; +import type { Denops } from "jsr:@denops/std@7.3.1"; import { walk } from "jsr:@std/fs@1.0.5"; import { z } from "npm:zod@3.23.8"; diff --git a/denops/futago/dispatcher/send_chat_message.ts b/denops/futago/dispatcher/send_chat_message.ts index 9ace4b5..f361777 100644 --- a/denops/futago/dispatcher/send_chat_message.ts +++ b/denops/futago/dispatcher/send_chat_message.ts @@ -4,11 +4,11 @@ // Last Change : 2024/11/04 01:26:48. // ============================================================================= -import * as fn from "jsr:@denops/std@7.3.0/function"; -import * as option from "jsr:@denops/std@7.3.0/option"; +import * as fn from "jsr:@denops/std@7.3.1/function"; +import * as option from "jsr:@denops/std@7.3.1/option"; import { Futago } from "../futago.ts"; import { getNow } from "../util.ts"; -import type { Denops } from "jsr:@denops/std@7.3.0"; +import type { Denops } from "jsr:@denops/std@7.3.1"; import { z } from "npm:zod@3.23.8"; import { Semaphore } from "jsr:@lambdalisue/async@2.1.1"; import { SEPARATOR } from "../consts.ts"; diff --git a/denops/futago/dispatcher/start_chat.ts b/denops/futago/dispatcher/start_chat.ts index 8a186ed..d7702e7 100644 --- a/denops/futago/dispatcher/start_chat.ts +++ b/denops/futago/dispatcher/start_chat.ts @@ -4,10 +4,10 @@ // Last Change : 2024/11/02 19:37:06. // ============================================================================= -import * as batch from "jsr:@denops/std@7.3.0/batch"; -import * as buffer from "jsr:@denops/std@7.3.0/buffer"; -import * as fn from "jsr:@denops/std@7.3.0/function"; -import type { Denops } from "jsr:@denops/std@7.3.0"; +import * as batch from "jsr:@denops/std@7.3.1/batch"; +import * as buffer from "jsr:@denops/std@7.3.1/buffer"; +import * as fn from "jsr:@denops/std@7.3.1/function"; +import type { Denops } from "jsr:@denops/std@7.3.1"; import { DEFAULT_AI_PROMPT, DEFAULT_HUMAN_PROMPT, DEFAULT_MODEL, SEPARATOR } from "../consts.ts"; import { Futago } from "../futago.ts"; import { GenerationConfigSchema } from "../schema/generation_config.ts"; diff --git a/denops/futago/main.ts b/denops/futago/main.ts index 4e5c95d..b642cea 100644 --- a/denops/futago/main.ts +++ b/denops/futago/main.ts @@ -4,12 +4,12 @@ // Last Change : 2024/11/04 01:00:16. // ============================================================================= -import * as fn from "jsr:@denops/std@7.3.0/function"; -import * as helper from "jsr:@denops/std@7.3.0/helper"; -import * as autocmd from "jsr:@denops/std@7.3.0/autocmd"; -import * as vars from "jsr:@denops/std@7.3.0/variable"; +import * as fn from "jsr:@denops/std@7.3.1/function"; +import * as helper from "jsr:@denops/std@7.3.1/helper"; +import * as autocmd from "jsr:@denops/std@7.3.1/autocmd"; +import * as vars from "jsr:@denops/std@7.3.1/variable"; import { deepMerge } from "jsr:@std/collections@1.0.9"; -import type { Denops } from "jsr:@denops/std@7.3.0"; +import type { Denops } from "jsr:@denops/std@7.3.1"; import { dir } from "jsr:@cross/dir@1.1.0"; import { ensureDir, ensureFile } from "jsr:@std/fs@1.0.5"; import { dirname, join } from "jsr:@std/path@1.0.8"; diff --git a/denops/futago/util.ts b/denops/futago/util.ts index 13b2679..5a1dfc4 100644 --- a/denops/futago/util.ts +++ b/denops/futago/util.ts @@ -5,8 +5,8 @@ // ============================================================================= import * as datetime from "jsr:@std/datetime@0.225.2"; -import * as fn from "jsr:@denops/std@7.3.0/function"; -import type { Denops } from "jsr:@denops/std@7.3.0"; +import * as fn from "jsr:@denops/std@7.3.1/function"; +import type { Denops } from "jsr:@denops/std@7.3.1"; export function getNow(): string { return datetime.format(new Date(), "yyyy-MM-ddTHH-mm-ss.SSS");