Skip to content

Commit 9a4634a

Browse files
committed
chore(release): 2.12.0 [skip ci]
# [2.12.0](v2.11.7...v2.12.0) (2020-08-03) ### Features * Added config option to show previous commits by user ([#1023](#1023)) ([42d3c36](42d3c36))
1 parent 42d3c36 commit 9a4634a

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [2.12.0](https://github.com/JohnstonCode/svn-scm/compare/v2.11.7...v2.12.0) (2020-08-03)
2+
3+
4+
### Features
5+
6+
* Added config option to show previous commits by user ([#1023](https://github.com/JohnstonCode/svn-scm/issues/1023)) ([42d3c36](https://github.com/JohnstonCode/svn-scm/commit/42d3c3616697c5ba0459d93fb2940d5335f46e44))
7+
18
## [2.11.7](https://github.com/JohnstonCode/svn-scm/compare/v2.11.6...v2.11.7) (2020-08-02)
29

310

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,9 @@ Here are all of the extension settings with their default values. To change any
157157
// Path to the svn executable
158158
"svn.path": null,
159159

160+
// Only show previous commits for a given user. Requires svn >= 1.8
161+
"svn.previousCommitsUser": null,
162+
160163
// Refresh remote changes on refresh command
161164
"svn.refresh.remoteChanges": null,
162165

package.json

+6-6
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.11.7",
5+
"version": "2.12.0",
66
"publisher": "johnstoncode",
77
"engines": {
88
"vscode": "^1.44.0"
@@ -1212,6 +1212,11 @@
12121212
"default": null,
12131213
"scope": "machine"
12141214
},
1215+
"svn.previousCommitsUser": {
1216+
"type": "string",
1217+
"description": "Only show previous commits for a given user. Requires svn >= 1.8",
1218+
"default": null
1219+
},
12151220
"svn.refresh.remoteChanges": {
12161221
"type": "boolean",
12171222
"description": "Refresh remote changes on refresh command",
@@ -1274,11 +1279,6 @@
12741279
"type": "boolean",
12751280
"description": "Set to ignore externals definitions on update (add --ignore-externals)",
12761281
"default": true
1277-
},
1278-
"svn.previousCommitsUser": {
1279-
"type": "string",
1280-
"description": "Only show previous commits for a given user. Requires svn >= 1.8",
1281-
"default": null
12821282
}
12831283
}
12841284
}

0 commit comments

Comments
 (0)