From fab46763107d7d36cb62e616e22c76dd2da59652 Mon Sep 17 00:00:00 2001 From: "junchi.zhang" <435900020@qq.com> Date: Mon, 5 May 2025 01:15:21 +0800 Subject: [PATCH] feat: update version 1.0.6 --- bin/utils/history.ts | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/utils/history.ts b/bin/utils/history.ts index 3eff77b..63895ad 100644 --- a/bin/utils/history.ts +++ b/bin/utils/history.ts @@ -110,7 +110,7 @@ const displayUploadHistory = (limit: number = 10): void => { recentHistory.forEach((item, index) => { console.log(chalk.green(`${index + 1}. ${item.filename}`)); console.log(chalk.white(` Path: ${item.path}`)); - console.log(chalk.white(` Content Hash: ${item.contentHash}`)); + console.log(chalk.white(` IPFS CID: ${item.contentHash}`)); if (item.shortUrl) { console.log(chalk.white(` ENS URL: https://${item.shortUrl}.pinit.eth.limo`)); } diff --git a/package.json b/package.json index bd899a7..5721150 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pinme", - "version": "1.0.5", + "version": "1.0.6", "publishConfig": { "access": "public" },