Update version and Announcement

This commit is contained in:
Saoud Rizwan 2024-08-03 19:02:37 -04:00
parent 1ea4c9beee
commit 582d178157
4 changed files with 8 additions and 3 deletions

View File

@ -4,6 +4,10 @@ All notable changes to the "claude-dev" extension will be documented in this fil
<!-- Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. --> <!-- Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. -->
## [1.0.9]
- Add support for OpenRouter and AWS Bedrock
## [1.0.8] ## [1.0.8]
- Shows diff view of new or edited files right in the editor - Shows diff view of new or edited files right in the editor

View File

@ -2,7 +2,7 @@
"name": "claude-dev", "name": "claude-dev",
"displayName": "Claude Dev", "displayName": "Claude Dev",
"description": "Autonomous software engineer right in your IDE, capable of creating/editing files, executing commands, and more with your permission every step of the way.", "description": "Autonomous software engineer right in your IDE, capable of creating/editing files, executing commands, and more with your permission every step of the way.",
"version": "1.0.87", "version": "1.0.9",
"icon": "icon.png", "icon": "icon.png",
"engines": { "engines": {
"vscode": "^1.84.0" "vscode": "^1.84.0"

View File

@ -22,7 +22,7 @@ const Announcement = ({ hideAnnouncement }: AnnouncementProps) => {
style={{ position: "absolute", top: "8px", right: "8px" }}> style={{ position: "absolute", top: "8px", right: "8px" }}>
<span className="codicon codicon-close"></span> <span className="codicon codicon-close"></span>
</VSCodeButton> </VSCodeButton>
<h3 style={{ margin: "0 0 8px" }}>🎉{" "}New in v1.0.87</h3> <h3 style={{ margin: "0 0 8px" }}>🎉{" "}New in v1.0.9</h3>
<ul style={{ margin: "0 0 8px", paddingLeft: "20px" }}> <ul style={{ margin: "0 0 8px", paddingLeft: "20px" }}>
<li> <li>
Open in the editor (using{" "} Open in the editor (using{" "}
@ -50,6 +50,7 @@ const Announcement = ({ hideAnnouncement }: AnnouncementProps) => {
<li>Shows diff view of new or edited files right in the editor</li> <li>Shows diff view of new or edited files right in the editor</li>
<li>Added ability to retry failed API requests (helpful for rate limits)</li> <li>Added ability to retry failed API requests (helpful for rate limits)</li>
<li>Export task to a markdown file (useful as context for future tasks)</li> <li>Export task to a markdown file (useful as context for future tasks)</li>
<li>Added OpenRouter and AWS Bedrock support</li>
</ul> </ul>
<p style={{ margin: "0" }}> <p style={{ margin: "0" }}>
Follow me for more updates!{" "} Follow me for more updates!{" "}

View File

@ -129,7 +129,7 @@ const SettingsView = ({
https://github.com/saoudrizwan/claude-dev https://github.com/saoudrizwan/claude-dev
</VSCodeLink> </VSCodeLink>
</p> </p>
<p style={{ fontStyle: "italic" }}>v1.0.87</p> <p style={{ fontStyle: "italic" }}>v1.0.9</p>
</div> </div>
</div> </div>
) )