Skip to content

Commit

Permalink
chore(release): 0.3.0 [skip ci]
Browse files Browse the repository at this point in the history
## [0.3.0](v0.2.1...v0.3.0) (2022-10-29)

### Features

* Add customizable keybindings for all defined actions + pop directory ([daaab6e](daaab6e))
* Attempt to locate original dir when triggered from a `/commit~{sha}/...` file path ([864f98a](864f98a))

### Bug Fixes

* Avoid throwing if `resolveRelative()` is called with a slash-less path ([895e58d](895e58d))
* Don't use active file as starting point if it doesn't contain any slashes ([af43951](af43951))
* Prevent `popPath` from resulting in `.` input ([c72d77e](c72d77e))
* Trigger (item) action commands argument is supposed to be 1 indexed ([b435dee](b435dee))
  • Loading branch information
semantic-release-bot committed Oct 29, 2022
1 parent b435dee commit 4741a6a
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## [0.3.0](https://github.com/mogelbrod/quick-opener/compare/v0.2.1...v0.3.0) (2022-10-29)


### Features

* Add customizable keybindings for all defined actions + pop directory ([daaab6e](https://github.com/mogelbrod/quick-opener/commit/daaab6eae3f1fe1a9fe0e9d3c06e5a6276feeda4))
* Attempt to locate original dir when triggered from a `/commit~{sha}/...` file path ([864f98a](https://github.com/mogelbrod/quick-opener/commit/864f98a60b704771d4e352f501aeac62f1793d15))


### Bug Fixes

* Avoid throwing if `resolveRelative()` is called with a slash-less path ([895e58d](https://github.com/mogelbrod/quick-opener/commit/895e58d4c62c148d0a035d965ba4b19fc5495103))
* Don't use active file as starting point if it doesn't contain any slashes ([af43951](https://github.com/mogelbrod/quick-opener/commit/af43951aba7fc259310a102e47f874ba677763c4))
* Prevent `popPath` from resulting in `.` input ([c72d77e](https://github.com/mogelbrod/quick-opener/commit/c72d77e04677e9ceec5a89c4e16da2f4a83b3288))
* Trigger (item) action commands argument is supposed to be 1 indexed ([b435dee](https://github.com/mogelbrod/quick-opener/commit/b435deec954c27f5c9c7ec4bced1138f7ccc4827))

## [0.2.1](https://github.com/mogelbrod/quick-opener/compare/v0.2.0...v0.2.1) (2022-10-19)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"publisher": "mogelbrod",
"author": "Victor Hallberg <[email protected]>",
"license": "MIT",
"version": "0.2.1",
"version": "0.3.0",
"engines": {
"vscode": "^1.72.0"
},
Expand Down Expand Up @@ -106,7 +106,9 @@
{
"when": "inQuickOpener",
"command": "quickOpener.triggerAction",
"args": ["create"],
"args": [
"create"
],
"key": "ctrl+n",
"mac": "cmd+n"
}
Expand Down

0 comments on commit 4741a6a

Please sign in to comment.