From 86ce5236bc9984f5e960612155c32a8e4608f14e Mon Sep 17 00:00:00 2001 From: ColemanRoo <117104599+ColemanRoo@users.noreply.github.com> Date: Tue, 26 Nov 2024 10:44:49 -0600 Subject: [PATCH] Fix/update version num in files list (#17) * updating the version number in the files list and updating README * small version bump so it can be uploaded to CodeArtifact --- README.md | 5 +++++ package.json | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 32f9140..f2cf691 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,11 @@ ## Roo Packaging and Installation +### Updating Version (for a new release) + +1. Bump the version in `package.json` +2. Update the version number in the `files` list in `package.json` + ### Packaging 1. Bump the version in `package.json` 2. Remove the old VSIX file: diff --git a/package.json b/package.json index 8b0fa20..9fd1509 100644 --- a/package.json +++ b/package.json @@ -2,9 +2,9 @@ "name": "roo-cline", "displayName": "Roo Cline", "description": "Autonomous coding agent right in your IDE, capable of creating/editing files, running commands, using the browser, and more with your permission every step of the way.", - "version": "2.1.0", + "version": "2.1.1", "files": [ - "bin/roo-cline-2.0.3.vsix", + "bin/roo-cline-2.1.1.vsix", "assets/icons/icon_Roo.png" ], "icon": "assets/icons/icon_Roo.png",