Skip to content

Commit ad30381

Browse files
authored
build - Prepare for 0.9.1 (#982)
1 parent c77f9b6 commit ad30381

14 files changed

Lines changed: 26 additions & 17 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.9.1
9+
### Fixed
10+
- Reset history to avoid skipping the main section rendering. [#970](https://github.com/microsoft/copilot-eclipse/pull/970)
11+
- Updated bundle version to fit 2024-03. [#971](https://github.com/microsoft/copilot-eclipse/pull/971)
12+
- Fixed Linux rendering problem. [#974](https://github.com/microsoft/copilot-eclipse/pull/974)
13+
- Async open chat after closing welcome page. [#975](https://github.com/microsoft/copilot-eclipse/pull/975)
14+
- Use IPreferenceStore.getBoolean() to get the updated value. [#976](https://github.com/microsoft/copilot-eclipse/pull/976)
15+
- Perspective logo should support dark mode. [#980](https://github.com/microsoft/copilot-eclipse/pull/980)
16+
817
## 0.9.0
918
### Added
1019
- Show MCP logs in Console View. [#833](https://github.com/microsoft/copilot-eclipse/issues/833)

com.microsoft.copilot.eclipse.core.test/META-INF/MANIFEST.MF

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: com.microsoft.copilot.eclipse.core.test
44
Bundle-SymbolicName: com.microsoft.copilot.eclipse.core.test;singleton:=true
5-
Bundle-Version: 0.9.0.qualifier
5+
Bundle-Version: 0.9.1.qualifier
66
Bundle-RequiredExecutionEnvironment: JavaSE-17
77
Fragment-Host: com.microsoft.copilot.eclipse.core
88
Automatic-Module-Name: com.microsoft.copilot.eclipse.core.test
99
Import-Package: org.objenesis;version="[3.4.0,4.0.0)",
1010
org.osgi.framework;version="[1.10.0,2.0.0)"
11-
Require-Bundle: com.microsoft.copilot.eclipse.core;bundle-version="0.9.0",
11+
Require-Bundle: com.microsoft.copilot.eclipse.core;bundle-version="0.9.1",
1212
org.mockito.mockito-core;bundle-version="5.14.2",
1313
org.eclipse.lsp4e;bundle-version="0.18.6",
1414
org.eclipse.jdt.annotation;resolution:=optional,

com.microsoft.copilot.eclipse.core.test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.microsoft.copilot.eclipse</groupId>
77
<artifactId>github-copilot-for-eclipse</artifactId>
8-
<version>0.9.0-SNAPSHOT</version>
8+
<version>0.9.1-SNAPSHOT</version>
99
</parent>
1010
<artifactId>com.microsoft.copilot.eclipse.core.test</artifactId>
1111
<packaging>eclipse-test-plugin</packaging>

com.microsoft.copilot.eclipse.core/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: com.microsoft.copilot.eclipse.core
44
Bundle-SymbolicName: com.microsoft.copilot.eclipse.core;singleton:=true
5-
Bundle-Version: 0.9.0.qualifier
5+
Bundle-Version: 0.9.1.qualifier
66
Export-Package: com.microsoft.copilot.eclipse.core,
77
com.microsoft.copilot.eclipse.core.chat,
88
com.microsoft.copilot.eclipse.core.chat.service,

com.microsoft.copilot.eclipse.core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.microsoft.copilot.eclipse</groupId>
77
<artifactId>github-copilot-for-eclipse</artifactId>
8-
<version>0.9.0-SNAPSHOT</version>
8+
<version>0.9.1-SNAPSHOT</version>
99
</parent>
1010
<artifactId>com.microsoft.copilot.eclipse.core</artifactId>
1111
<packaging>eclipse-plugin</packaging>

com.microsoft.copilot.eclipse.feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<feature
33
id="com.microsoft.copilot.eclipse.feature"
44
label="GitHub Copilot"
5-
version="0.9.0.qualifier">
5+
version="0.9.1.qualifier">
66

77
<license url="">
88
GitHub Copilot

com.microsoft.copilot.eclipse.feature/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.microsoft.copilot.eclipse</groupId>
77
<artifactId>github-copilot-for-eclipse</artifactId>
8-
<version>0.9.0-SNAPSHOT</version>
8+
<version>0.9.1-SNAPSHOT</version>
99
</parent>
1010
<artifactId>com.microsoft.copilot.eclipse.feature</artifactId>
1111
<packaging>eclipse-feature</packaging>

com.microsoft.copilot.eclipse.repository/category.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<site>
3-
<feature id="com.microsoft.copilot.eclipse.feature" version="0.9.0.qualifier">
3+
<feature id="com.microsoft.copilot.eclipse.feature" version="0.9.1.qualifier">
44
<category name="com.microsoft.copilot.eclipse.category"/>
55
</feature>
66
<category-def name="com.microsoft.copilot.eclipse.category" label="GitHub Copilot"/>

com.microsoft.copilot.eclipse.repository/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.microsoft.copilot.eclipse</groupId>
77
<artifactId>github-copilot-for-eclipse</artifactId>
8-
<version>0.9.0-SNAPSHOT</version>
8+
<version>0.9.1-SNAPSHOT</version>
99
</parent>
1010
<artifactId>com.microsoft.copilot.eclipse.repository</artifactId>
1111
<packaging>eclipse-repository</packaging>

com.microsoft.copilot.eclipse.ui.test/META-INF/MANIFEST.MF

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: com.microsoft.copilot.eclipse.ui.test
44
Bundle-SymbolicName: com.microsoft.copilot.eclipse.ui.test;singleton:=true
5-
Bundle-Version: 0.9.0.qualifier
5+
Bundle-Version: 0.9.1.qualifier
66
Bundle-RequiredExecutionEnvironment: JavaSE-17
77
Automatic-Module-Name: com.microsoft.copilot.eclipse.ui.test
88
Import-Package: org.objenesis;version="[3.4.0,4.0.0)",
@@ -12,8 +12,8 @@ Require-Bundle: org.mockito.mockito-core;bundle-version="5.14.2",
1212
org.eclipse.jdt.annotation;resolution:=optional,
1313
junit-jupiter-api;bundle-version="5.10.2",
1414
org.mockito.junit-jupiter;bundle-version="5.10.2",
15-
com.microsoft.copilot.eclipse.core;bundle-version="0.9.0",
16-
com.microsoft.copilot.eclipse.ui;bundle-version="0.9.0",
15+
com.microsoft.copilot.eclipse.core;bundle-version="0.9.1",
16+
com.microsoft.copilot.eclipse.ui;bundle-version="0.9.1",
1717
org.eclipse.ui;bundle-version="3.205.100",
1818
org.eclipse.ui.ide,
1919
org.eclipse.ui.workbench.texteditor,

0 commit comments

Comments
 (0)