From 3e1357695d53d92fc1b683e5a32a7504d47f2ad8 Mon Sep 17 00:00:00 2001 From: tedspare Date: Tue, 15 Oct 2024 21:48:58 -0400 Subject: [PATCH] Trigger release --- CHANGELOG.md | 1 + package.json | 2 +- src/index.ts | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04f9671..786dc5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +- [2024-10-15] [Trigger release](https://github.com/RubricLab/memory/commit/b737b478caadd3c5a57cf0aa1e75bab81804819e) - [2024-10-15] [Replace Prisma with Kysely](https://github.com/RubricLab/memory/commit/fed6f2022cb78052d4afbb1c63d95f40e7e01832) - [2024-10-15] [Remove temp type](https://github.com/RubricLab/memory/commit/7edd19d51c8b3d0d9f8625e996e4818614e731dd) - [2024-10-15] [Improve editing ability](https://github.com/RubricLab/memory/commit/c4e105be1a85152af88e77c9b41ef061660e7138) diff --git a/package.json b/package.json index 49847de..fb187f8 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@rubriclab/memory", "module": "src/index.ts", "main": "src/index.ts", - "version": "0.0.31", + "version": "0.0.32", "private": false, "type": "module", "devDependencies": { diff --git a/src/index.ts b/src/index.ts index ff5407d..5b5ceae 100644 --- a/src/index.ts +++ b/src/index.ts @@ -313,6 +313,7 @@ export class Memory { console.log(chalk.green(`Added ${facts.length} facts`)) console.log(chalk.yellow(`Updated ${toDelete.length} facts`)) + console.log(`Completed in ${(performance.now() - start).toFixed(2)}ms`) return { tags, facts }