Skip to content

Commit

Permalink
📝 update changelog(s)
Browse files Browse the repository at this point in the history
  • Loading branch information
sestinj committed Nov 20, 2023
1 parent a42d895 commit 4c8c684
Show file tree
Hide file tree
Showing 12 changed files with 129 additions and 36 deletions.
5 changes: 5 additions & 0 deletions .changes/extensions/intellij/v0.0.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## v0.0.1 - 2023-09-01

### Added

- Initial scaffold created from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template)
5 changes: 5 additions & 0 deletions .changes/extensions/intellij/v0.0.19.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## v0.0.19 - 2023-11-19

### Changed

- migrated to .json config file format
9 changes: 9 additions & 0 deletions .changes/extensions/vscode/v0.5.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## v0.5.0 - 2023-11-09

### Added

- Codebase Retrieval: Use /codebase or cmd+enter and Continue will automatically gather the most important context

### Changed

- Switch from Websockets to Socket.io
11 changes: 11 additions & 0 deletions .changes/extensions/vscode/v0.6.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## v0.6.0 - 2023-11-10

### Added

- Full screen mode
- StackOverflow slash command to augment with web search
- VS Code context menus: right click to add code to context, debug the terminal, or share your Continue session

### Fixed

- Reliability improvements to JetBrains by bringing up-to-date with the socket.io refactor
5 changes: 5 additions & 0 deletions .changes/extensions/vscode/v0.6.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## v0.6.4 - 2023-11-19

### Changed

- migrated to .json config file format
5 changes: 5 additions & 0 deletions .changes/server/v0.1.99.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## v0.1.99 - 2023-11-19

### Changed

- migrated to .json config file format
45 changes: 31 additions & 14 deletions .changie.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,40 @@ headerPath: header.tpl.md
changelogPath: CHANGELOG.md
versionExt: md
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
kindFormat: '### {{.Kind}}'
changeFormat: '* {{.Body}}'
kindFormat: "### {{.Kind}}"
changeFormat: "* {{.Body}}"
kinds:
- label: Added
auto: minor
- label: Changed
auto: major
- label: Deprecated
auto: minor
- label: Removed
auto: major
- label: Fixed
auto: patch
- label: Security
auto: patch
- label: Added
auto: minor
- label: Changed
auto: major
- label: Deprecated
auto: minor
- label: Removed
auto: major
- label: Fixed
auto: patch
- label: Security
auto: patch
newlines:
afterChangelogHeader: 1
beforeChangelogVersion: 1
endOfVersion: 1
envPrefix: CHANGIE_

projects:
- label: server
key: server
changelog: server/CHANGELOG.md

- label: extensions/intellij
key: extensions/intellij
changelog: extensions/intellij/CHANGELOG.md

- label: extensions/vscode
key: extensions/vscode
changelog: extensions/vscode/CHANGELOG.md

- label: docs
key: docs
changelog: docs/CHANGELOG.md # for releasing documents independently
22 changes: 4 additions & 18 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,7 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).
Separate changelogs are kept for each part of the Continue repository:


## v0.6.0 - 2023-11-10
### Added
* Full screen mode
* StackOverflow slash command to augment with web search
* VS Code context menus: right click to add code to context, debug the terminal, or share your Continue session
### Fixed
* Reliability improvements to JetBrains by bringing up-to-date with the socket.io refactor

## v0.5.0 - 2023-11-09
### Added
* Codebase Retrieval: Use /codebase or cmd+enter and Continue will automatically gather the most important context
### Changed
* Switch from Websockets to Socket.io
- [VS Code Extension](./extensions/vscode/CHANGELOG.md)
- [Intellij Extension](./extensions/intellij/CHANGELOG.md)
- [Continue Server](./server/CHANGELOG.md)
7 changes: 7 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).

18 changes: 15 additions & 3 deletions extensions/intellij/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
<!-- Keep a Changelog guide -> https://keepachangelog.com -->
# Changelog
All notable changes to this project will be documented in this file.

# continue-intellij-extension Changelog
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).


## v0.0.19 - 2023-11-19

### Changed

- migrated to .json config file format

## v0.0.1 - 2023-09-01

## [Unreleased]
### Added

- Initial scaffold created from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template)
20 changes: 19 additions & 1 deletion extensions/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,29 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).


## v0.6.4 - 2023-11-19

### Changed

- migrated to .json config file format

## v0.6.0 - 2023-11-10

### Added

- Full screen mode
- StackOverflow slash command to augment with web search
- VS Code context menus: right click to add code to context, debug the terminal, or share your Continue session

### Fixed

- Reliability improvements to JetBrains by bringing up-to-date with the socket.io refactor

## v0.5.0 - 2023-11-09

### Added
Expand Down
13 changes: 13 additions & 0 deletions server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).


## v0.1.99 - 2023-11-19

### Changed

- migrated to .json config file format

0 comments on commit 4c8c684

Please sign in to comment.