Skip to content

Commit

Permalink
chore: Release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
marlomgirardi committed May 21, 2021
1 parent 0bf50b4 commit 7b8a507
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@

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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

Starting at `v1.0.0` this project will follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html). `v0.x` can be considered a beta version.

## Unreleased

## 0.2.0 - 2021-05-21

### Added

- Add task keybinding (Cmd+K Cmd+Shift+C).
Expand Down
20 changes: 13 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "keep-context",
"displayName": "Keep Context",
"description": "Make context switch easy to be managed and tracked.",
"version": "0.1.2",
"version": "0.2.0",
"publisher": "marlom",
"icon": "images/keep-context.png",
"engines": {
Expand All @@ -18,14 +18,14 @@
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
},
"configuration": {},
"keybindings": [
{
"key": "ctrl+k ctrl+shift+c",
"mac": "cmd+k cmd+shift+c",
"command": "keepContext.newTask"
}, {
},
{
"key": "ctrl+k ctrl+shift+s",
"mac": "cmd+k cmd+shift+s",
"command": "keepContext.selectTask"
Expand Down Expand Up @@ -75,9 +75,15 @@
],
"menus": {
"commandPalette": [
{ "command": "keepContext.newTask" },
{ "command": "keepContext.editTask" },
{ "command": "keepContext.deleteTask" }
{
"command": "keepContext.newTask"
},
{
"command": "keepContext.editTask"
},
{
"command": "keepContext.deleteTask"
}
],
"view/title": [
{
Expand Down

0 comments on commit 7b8a507

Please sign in to comment.