Skip to content

Commit c4e0905

Browse files
committed
chore(release): 2.15.0 [skip ci]
# [2.15.0](v2.14.0...v2.15.0) (2021-11-08) ### Features * Added Merge command ([#1540](#1540)) ([87060b3](87060b3))
1 parent 87060b3 commit c4e0905

File tree

2 files changed

+17
-10
lines changed

2 files changed

+17
-10
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [2.15.0](https://github.com/JohnstonCode/svn-scm/compare/v2.14.0...v2.15.0) (2021-11-08)
2+
3+
4+
### Features
5+
6+
* Added Merge command ([#1540](https://github.com/JohnstonCode/svn-scm/issues/1540)) ([87060b3](https://github.com/JohnstonCode/svn-scm/commit/87060b36021361c1d99c29a91b8a22b5b1f34d09))
7+
18
# [2.14.0](https://github.com/JohnstonCode/svn-scm/compare/v2.13.6...v2.14.0) (2021-10-07)
29

310

package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "svn-scm",
33
"displayName": "SVN",
44
"description": "Integrated Subversion source control",
5-
"version": "2.14.0",
5+
"version": "2.15.0",
66
"publisher": "johnstoncode",
77
"engines": {
88
"vscode": "^1.44.0"
@@ -249,6 +249,11 @@
249249
"title": "Show commit messages",
250250
"category": "SVN"
251251
},
252+
{
253+
"command": "svn.merge",
254+
"title": "Merge",
255+
"category": "SVN"
256+
},
252257
{
253258
"command": "svn.openChangeBase",
254259
"title": "Open Changes with BASE",
@@ -456,11 +461,6 @@
456461
"title": "Switch Branch",
457462
"category": "SVN"
458463
},
459-
{
460-
"command": "svn.merge",
461-
"title": "Merge",
462-
"category": "SVN"
463-
},
464464
{
465465
"command": "svn.treeview.pullIncomingChange",
466466
"title": "Update selected",
@@ -567,6 +567,10 @@
567567
"command": "svn.log",
568568
"when": "config.svn.enabled && svnOpenRepositoryCount != 0"
569569
},
570+
{
571+
"command": "svn.merge",
572+
"when": "config.svn.enabled && svnOpenRepositoryCount != 0"
573+
},
570574
{
571575
"command": "svn.openChangeBase",
572576
"when": "config.svn.enabled && svnOpenRepositoryCount != 0 && svnActiveEditorHasChanges"
@@ -691,10 +695,6 @@
691695
"command": "svn.switchBranch",
692696
"when": "config.svn.enabled && svnOpenRepositoryCount != 0"
693697
},
694-
{
695-
"command": "svn.merge",
696-
"when": "config.svn.enabled && svnOpenRepositoryCount != 0"
697-
},
698698
{
699699
"command": "svn.treeview.pullIncomingChange",
700700
"when": "false"

0 commit comments

Comments
 (0)