Skip to content

Commit eb04b29

Browse files
committed
chore(release): release v1.0.0
1 parent 613929e commit eb04b29

File tree

10 files changed

+57
-17
lines changed

10 files changed

+57
-17
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [1.0.0](https://github.com/SAP/code-snippet/compare/v0.0.29...v1.0.0) (2021-04-26)
7+
8+
Initial version with changelog tracking.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [1.0.0](https://github.com/SAP/code-snippet/compare/v0.0.29...v1.0.0) (2021-04-26)
7+
8+
Initial version with changelog tracking.

examples/vscode-snippet-contrib/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-snippet-contrib",
33
"displayName": "vscode-snippet-contrib",
44
"description": "",
5-
"version": "0.1.0",
5+
"version": "1.0.0",
66
"publisher": "SAPOSS",
77
"private": true,
88
"engines": {
@@ -46,15 +46,15 @@
4646
"compile": "tsc -p ."
4747
},
4848
"dependencies": {
49-
"@sap-devx/code-snippet-types": "0.1.0",
50-
"lodash": "4.17.21",
49+
"@sap-devx/code-snippet-types": "^1.0.0",
5150
"comment-json": "2.1.0",
52-
"fs-extra": "7.0.1"
51+
"fs-extra": "7.0.1",
52+
"lodash": "4.17.21"
5353
},
5454
"devDependencies": {
55-
"@types/lodash": "^4.14.150",
5655
"@types/comment-json": "1.1.1",
5756
"@types/fs-extra": "7.0.0",
57+
"@types/lodash": "^4.14.150",
5858
"@types/vscode": "^1.40.0"
5959
}
6060
}

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
"allowBranch": "master"
1212
}
1313
},
14-
"version": "0.1.0"
14+
"version": "1.0.0"
1515
}

packages/backend/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [1.0.0](https://github.com/SAP/code-snippet/compare/v0.0.29...v1.0.0) (2021-04-26)
7+
8+
Initial version with changelog tracking.

packages/backend/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "code-snippet",
33
"displayName": "Code Snippet",
4-
"version": "0.1.0",
4+
"version": "1.0.0",
55
"description": "A VSCode extension that provides a simple way to add code snippets.",
66
"publisher": "SAPOSS",
77
"private": true,
@@ -114,27 +114,27 @@
114114
},
115115
"dependencies": {
116116
"@sap-devx/webview-rpc": "0.3.1",
117-
"@vscode-logging/logger": "1.2.1",
118117
"@sap/swa-for-sapbas-vsx": "1.1.11",
118+
"@vscode-logging/logger": "1.2.1",
119+
"code-snippet-frontend": "^1.0.0",
119120
"fs-extra": "9.1.0",
120121
"lodash": "4.17.21",
121122
"strip-ansi": "6.0.0",
122123
"ws": "7.4.4",
123-
"yeoman-environment": "2.10.3",
124-
"code-snippet-frontend": "0.1.0"
124+
"yeoman-environment": "2.10.3"
125125
},
126126
"devDependencies": {
127127
"@types/fs-extra": "^9.0.4",
128128
"@types/lodash": "^4.14.165",
129129
"@types/sinon": "^9.0.9",
130130
"@types/ws": "^7.4.0",
131131
"@types/yeoman-environment": "2.10.2",
132-
"datauri": "3.0.0",
133132
"copy-webpack-plugin": "^5.0.5",
133+
"datauri": "3.0.0",
134134
"sinon": "^9.2.1",
135+
"string-replace-loader": "^2.1.1",
135136
"ts-loader": "^8.0.14",
136137
"ts-node": "^9.1.1",
137-
"string-replace-loader": "^2.1.1",
138138
"vsce": "^1.73.0",
139139
"webpack": "^4.43.0",
140140
"webpack-cli": "^3.3.11"

packages/frontend/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [1.0.0](https://github.com/SAP/code-snippet/compare/v0.0.29...v1.0.0) (2021-04-26)
7+
8+
Initial version with changelog tracking.

packages/frontend/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "code-snippet-frontend",
33
"displayName": "Code Snippet Frontend",
4-
"version": "0.1.0",
4+
"version": "1.0.0",
55
"publisher": "SAP",
66
"license": "Apache 2.0",
77
"description": "Frontend for the Code Snippet framework",
@@ -22,16 +22,16 @@
2222
"@sap-devx/inquirer-gui": "0.1.26",
2323
"@sap-devx/inquirer-gui-file-browser-plugin": "0.0.5",
2424
"@sap-devx/inquirer-gui-folder-browser-plugin": "0.0.3",
25+
"@sap-devx/inquirer-gui-label-plugin": "0.0.1",
2526
"@sap-devx/inquirer-gui-login-plugin": "0.0.4",
2627
"@sap-devx/inquirer-gui-tiles-plugin": "0.0.8",
27-
"@sap-devx/inquirer-gui-label-plugin": "0.0.1",
28+
"@sap-devx/webview-rpc": "0.3.1",
2829
"core-js": "3.6.5",
2930
"lodash": "4.17.21",
3031
"material-design-icons-iconfont": "6.1.0",
3132
"vue": "2.6.12",
3233
"vue-loading-overlay": "3.3.0",
33-
"vuetify": "2.3.10",
34-
"@sap-devx/webview-rpc": "0.3.1"
34+
"vuetify": "2.3.10"
3535
},
3636
"devDependencies": {
3737
"@babel/preset-env": "7.11.5",

packages/types/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [1.0.0](https://github.com/SAP/code-snippet/compare/v0.0.29...v1.0.0) (2021-04-26)
7+
8+
Initial version with changelog tracking.

packages/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@sap-devx/code-snippet-types",
33
"description": "code-snippet types",
4-
"version": "0.1.0",
4+
"version": "1.0.0",
55
"license": "Apache-2.0",
66
"repository": {
77
"type": "git",

0 commit comments

Comments
 (0)