Skip to content

Commit 995c596

Browse files
authored
build: Bump version to 0.16.0 and add changelog (#1616)
1 parent fed1ea2 commit 995c596

18 files changed

Lines changed: 40 additions & 17 deletions

File tree

  • com.microsoft.copilot.eclipse.branding/META-INF
  • com.microsoft.copilot.eclipse.core.agent.linux.aarch64/META-INF
  • com.microsoft.copilot.eclipse.core.agent.linux.x64/META-INF
  • com.microsoft.copilot.eclipse.core.agent.macosx.aarch64/META-INF
  • com.microsoft.copilot.eclipse.core.agent.macosx.x64/META-INF
  • com.microsoft.copilot.eclipse.core.agent.win32/META-INF
  • com.microsoft.copilot.eclipse.core.test/META-INF
  • com.microsoft.copilot.eclipse.core/META-INF
  • com.microsoft.copilot.eclipse.feature
  • com.microsoft.copilot.eclipse.repository
  • com.microsoft.copilot.eclipse.terminal.api/META-INF
  • com.microsoft.copilot.eclipse.ui.jobs/META-INF
  • com.microsoft.copilot.eclipse.ui.terminal.tm/META-INF
  • com.microsoft.copilot.eclipse.ui.terminal/META-INF
  • com.microsoft.copilot.eclipse.ui.test/META-INF
  • com.microsoft.copilot.eclipse.ui/META-INF

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,29 @@ 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.16.0
9+
### Added
10+
- Support tool calling in Ask Mode. [PR#1606](https://github.com/microsoft/copilot-eclipse/pull/1606)
11+
- Show detailed model information on dropdown hover. [PR#1607](https://github.com/microsoft/copilot-eclipse/pull/1607)
12+
- Add openChatView mode parameter and wire handoff to command. [PR#1587](https://github.com/microsoft/copilot-eclipse/pull/1587)
13+
14+
### Changed
15+
- Update chat mode selector and model selector to show more information. [PR#1595](https://github.com/microsoft/copilot-eclipse/pull/1595) [PR#1609](https://github.com/microsoft/copilot-eclipse/pull/1609)
16+
- Remove 'Included' billing message and simplify multiplier to 0. [PR#1611](https://github.com/microsoft/copilot-eclipse/pull/1611)
17+
- Remove border for Add Context button and center layout in ActionBar. [#1613](https://github.com/microsoft/copilot-eclipse/issues/1613)
18+
19+
### Fixed
20+
- Fix NPE under updateCodeMinings() lambda if editor is already disposed [PR#1580](https://github.com/microsoft/copilot-eclipse/pull/1580)
21+
- Fix bind Ctrl++ shortcut additionally for increaseChatFontSize command [PR#1581](https://github.com/microsoft/copilot-eclipse/pull/1581)
22+
- Fix Binary LSP agent start failed [PR#1582](https://github.com/microsoft/copilot-eclipse/pull/1582)
23+
- Fix some languages does not have syntax highlighting [PR#1583](https://github.com/microsoft/copilot-eclipse/pull/1583)
24+
- Fix wrong line delimiter is generated in completion [PR#1584](https://github.com/microsoft/copilot-eclipse/pull/1584)
25+
- Fix "Copy and Open" does not copy [PR#1585](https://github.com/microsoft/copilot-eclipse/pull/1585)
26+
- Fix BadPositionCategoryException in RenderManager when closing markdown editor [PR#1586](https://github.com/microsoft/copilot-eclipse/pull/1586)
27+
- Fix use invisible OSC escape sequence for terminal command completion marker [PR#1588](https://github.com/microsoft/copilot-eclipse/pull/1588)
28+
- Fix URI comparison for similar URI schemes. [PR#1596](https://github.com/microsoft/copilot-eclipse/pull/1596)
29+
- Fix CLS "temperature and top_p cannot both be specified for this model". [PR#1615](https://github.com/microsoft/copilot-eclipse/pull/1615)
30+
831
## 0.15.0
932
### Added
1033
- Add JDT debugger tool for agent. [PR#1476](https://github.com/microsoft/copilot-eclipse/pull/1476)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: GitHub Copilot
44
Bundle-SymbolicName: com.microsoft.copilot.eclipse.branding;singleton:=true
5-
Bundle-Version: 0.15.0.qualifier
5+
Bundle-Version: 0.16.0.qualifier
66
Bundle-Vendor: GitHub Copilot
77
Automatic-Module-Name: com.microsoft.copilot.eclipse.branding

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
33
Bundle-Name: com.microsoft.copilot.eclipse.core.agent.linux.aarch64
44
Bundle-SymbolicName: com.microsoft.copilot.eclipse.core.agent.linux.aarch64
55
Automatic-Module-NAME: com.microsoft.copilot.eclipse.core.agent.linux.aarch64
6-
Bundle-Version: 0.15.0.qualifier
6+
Bundle-Version: 0.16.0.qualifier
77
Bundle-Vendor: GitHub Copilot
88
Fragment-Host: com.microsoft.copilot.eclipse.core
99
Bundle-RequiredExecutionEnvironment: JavaSE-17

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
33
Bundle-Name: com.microsoft.copilot.eclipse.core.agent.linux.x64
44
Bundle-SymbolicName: com.microsoft.copilot.eclipse.core.agent.linux.x64
55
Automatic-Module-NAME: com.microsoft.copilot.eclipse.core.agent.linux.x64
6-
Bundle-Version: 0.15.0.qualifier
6+
Bundle-Version: 0.16.0.qualifier
77
Bundle-Vendor: GitHub Copilot
88
Fragment-Host: com.microsoft.copilot.eclipse.core
99
Bundle-RequiredExecutionEnvironment: JavaSE-17

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
33
Bundle-Name: com.microsoft.copilot.eclipse.core.agent.macosx.aarch64
44
Bundle-SymbolicName: com.microsoft.copilot.eclipse.core.agent.macosx.aarch64
55
Automatic-Module-NAME: com.microsoft.copilot.eclipse.core.agent.macosx.aarch64
6-
Bundle-Version: 0.15.0.qualifier
6+
Bundle-Version: 0.16.0.qualifier
77
Bundle-Vendor: GitHub Copilot
88
Fragment-Host: com.microsoft.copilot.eclipse.core
99
Bundle-RequiredExecutionEnvironment: JavaSE-17

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
33
Bundle-Name: com.microsoft.copilot.eclipse.core.agent.macosx.x64
44
Bundle-SymbolicName: com.microsoft.copilot.eclipse.core.agent.macosx.x64
55
Automatic-Module-NAME: com.microsoft.copilot.eclipse.core.agent.macosx.x64
6-
Bundle-Version: 0.15.0.qualifier
6+
Bundle-Version: 0.16.0.qualifier
77
Bundle-Vendor: GitHub Copilot
88
Fragment-Host: com.microsoft.copilot.eclipse.core
99
Bundle-RequiredExecutionEnvironment: JavaSE-17

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
33
Bundle-Name: com.microsoft.copilot.eclipse.core.agent.win32
44
Bundle-SymbolicName: com.microsoft.copilot.eclipse.core.agent.win32
55
Automatic-Module-NAME: com.microsoft.copilot.eclipse.core.agent.win32
6-
Bundle-Version: 0.15.0.qualifier
6+
Bundle-Version: 0.16.0.qualifier
77
Bundle-Vendor: GitHub Copilot
88
Fragment-Host: com.microsoft.copilot.eclipse.core
99
Bundle-RequiredExecutionEnvironment: JavaSE-17

com.microsoft.copilot.eclipse.core.test/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.test
44
Bundle-SymbolicName: com.microsoft.copilot.eclipse.core.test;singleton:=true
5-
Bundle-Version: 0.15.0.qualifier
5+
Bundle-Version: 0.16.0.qualifier
66
Bundle-Vendor: GitHub Copilot
77
Bundle-RequiredExecutionEnvironment: JavaSE-17
88
Fragment-Host: com.microsoft.copilot.eclipse.core

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.15.0.qualifier
5+
Bundle-Version: 0.16.0.qualifier
66
Bundle-Vendor: GitHub Copilot
77
Export-Package: com.microsoft.copilot.eclipse.core,
88
com.microsoft.copilot.eclipse.core.chat,

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.15.0.qualifier"
5+
version="0.16.0.qualifier"
66
provider-name="GitHub Copilot"
77
plugin="com.microsoft.copilot.eclipse.branding">
88

0 commit comments

Comments
 (0)