Skip to content

Commit

Permalink
chore(release): 2.15.0 [skip ci]
Browse files Browse the repository at this point in the history
# [2.15.0](v2.14.0...v2.15.0) (2021-11-08)

### Features

* Added Merge command ([#1540](#1540)) ([87060b3](87060b3))
  • Loading branch information
JohnstonCode committed Nov 8, 2021
1 parent 87060b3 commit c4e0905
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [2.15.0](https://github.com/JohnstonCode/svn-scm/compare/v2.14.0...v2.15.0) (2021-11-08)


### Features

* Added Merge command ([#1540](https://github.com/JohnstonCode/svn-scm/issues/1540)) ([87060b3](https://github.com/JohnstonCode/svn-scm/commit/87060b36021361c1d99c29a91b8a22b5b1f34d09))

# [2.14.0](https://github.com/JohnstonCode/svn-scm/compare/v2.13.6...v2.14.0) (2021-10-07)


Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "svn-scm",
"displayName": "SVN",
"description": "Integrated Subversion source control",
"version": "2.14.0",
"version": "2.15.0",
"publisher": "johnstoncode",
"engines": {
"vscode": "^1.44.0"
Expand Down Expand Up @@ -249,6 +249,11 @@
"title": "Show commit messages",
"category": "SVN"
},
{
"command": "svn.merge",
"title": "Merge",
"category": "SVN"
},
{
"command": "svn.openChangeBase",
"title": "Open Changes with BASE",
Expand Down Expand Up @@ -456,11 +461,6 @@
"title": "Switch Branch",
"category": "SVN"
},
{
"command": "svn.merge",
"title": "Merge",
"category": "SVN"
},
{
"command": "svn.treeview.pullIncomingChange",
"title": "Update selected",
Expand Down Expand Up @@ -567,6 +567,10 @@
"command": "svn.log",
"when": "config.svn.enabled && svnOpenRepositoryCount != 0"
},
{
"command": "svn.merge",
"when": "config.svn.enabled && svnOpenRepositoryCount != 0"
},
{
"command": "svn.openChangeBase",
"when": "config.svn.enabled && svnOpenRepositoryCount != 0 && svnActiveEditorHasChanges"
Expand Down Expand Up @@ -691,10 +695,6 @@
"command": "svn.switchBranch",
"when": "config.svn.enabled && svnOpenRepositoryCount != 0"
},
{
"command": "svn.merge",
"when": "config.svn.enabled && svnOpenRepositoryCount != 0"
},
{
"command": "svn.treeview.pullIncomingChange",
"when": "false"
Expand Down

0 comments on commit c4e0905

Please sign in to comment.