Skip to content

Commit a40a151

Browse files
committed
chore(release): release v1.3.0
1 parent e41497f commit a40a151

File tree

8 files changed

+62
-9
lines changed

8 files changed

+62
-9
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.3.0](https://github.com/SAP/code-snippet/compare/v1.2.5...v1.3.0) (2024-01-30)
7+
8+
9+
### Features
10+
11+
* migrating to Vue3 ([#280](https://github.com/SAP/code-snippet/issues/280)) ([67670a6](https://github.com/SAP/code-snippet/commit/67670a623895be6d963316f02f9876d1ee66ac15))
12+
13+
14+
### Reverts
15+
16+
* Revert "fix: exclude radio from max-width (#243)" ([e41497f](https://github.com/SAP/code-snippet/commit/e41497f343de32e658f693ceb5b6520baec44661)), closes [#243](https://github.com/SAP/code-snippet/issues/243)
17+
18+
19+
20+
21+
622
## [1.2.5](https://github.com/SAP/code-snippet/compare/v1.2.4...v1.2.5) (2023-03-29)
723

824

examples/vscode-snippet-contrib/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.3.0](https://github.com/SAP/code-snippet/compare/v1.2.5...v1.3.0) (2024-01-30)
7+
8+
9+
### Features
10+
11+
* migrating to Vue3 ([#280](https://github.com/SAP/code-snippet/issues/280)) ([67670a6](https://github.com/SAP/code-snippet/commit/67670a623895be6d963316f02f9876d1ee66ac15))
12+
13+
14+
15+
16+
617
## [1.2.1](https://github.com/SAP/code-snippet/compare/v1.2.0...v1.2.1) (2023-03-29)
718

819
**Note:** Version bump only for package vscode-snippet-contrib

examples/vscode-snippet-contrib/package.json

Lines changed: 1 addition & 1 deletion
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": "1.2.1",
5+
"version": "1.3.0",
66
"publisher": "SAPOSS",
77
"private": true,
88
"engines": {

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
"allowBranch": "master"
1515
}
1616
},
17-
"version": "1.2.5"
17+
"version": "1.3.0"
1818
}

packages/backend/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.3.0](https://github.com/SAP/code-snippet/compare/v1.2.5...v1.3.0) (2024-01-30)
7+
8+
9+
### Features
10+
11+
* migrating to Vue3 ([#280](https://github.com/SAP/code-snippet/issues/280)) ([67670a6](https://github.com/SAP/code-snippet/commit/67670a623895be6d963316f02f9876d1ee66ac15))
12+
13+
14+
15+
16+
617
## [1.2.5](https://github.com/SAP/code-snippet/compare/v1.2.4...v1.2.5) (2023-03-29)
718

819
**Note:** Version bump only for package code-snippet

packages/backend/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",
33
"displayName": "Code Snippet",
4-
"version": "1.2.5",
4+
"version": "1.3.0",
55
"description": "A VSCode extension that provides a simple way to add code snippets.",
66
"publisher": "SAPOSS",
77
"private": true,
@@ -116,13 +116,13 @@
116116
"@sap-devx/webview-rpc": "0.3.1",
117117
"@sap/swa-for-sapbas-vsx": "1.2.15",
118118
"@vscode-logging/logger": "1.2.3",
119-
"code-snippet-frontend": "^1.2.5",
119+
"code-snippet-frontend": "^1.3.0",
120120
"fs-extra": "9.1.0",
121+
"jsdom": "23.2.0",
121122
"lodash": "4.17.21",
122123
"strip-ansi": "6.0.0",
123124
"ws": "7.4.4",
124-
"yeoman-environment": "2.10.3",
125-
"jsdom": "23.2.0"
125+
"yeoman-environment": "2.10.3"
126126
},
127127
"devDependencies": {
128128
"@types/fs-extra": "^9.0.4",

packages/frontend/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.3.0](https://github.com/SAP/code-snippet/compare/v1.2.5...v1.3.0) (2024-01-30)
7+
8+
9+
### Features
10+
11+
* migrating to Vue3 ([#280](https://github.com/SAP/code-snippet/issues/280)) ([67670a6](https://github.com/SAP/code-snippet/commit/67670a623895be6d963316f02f9876d1ee66ac15))
12+
13+
14+
### Reverts
15+
16+
* Revert "fix: exclude radio from max-width (#243)" ([e41497f](https://github.com/SAP/code-snippet/commit/e41497f343de32e658f693ceb5b6520baec44661)), closes [#243](https://github.com/SAP/code-snippet/issues/243)
17+
18+
19+
20+
21+
622
## [1.2.5](https://github.com/SAP/code-snippet/compare/v1.2.4...v1.2.5) (2023-03-29)
723

824

packages/frontend/package.json

Lines changed: 2 additions & 3 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": "1.2.5",
4+
"version": "1.3.0",
55
"publisher": "SAP",
66
"license": "Apache 2.0",
77
"description": "Frontend for the Code Snippet framework",
@@ -17,7 +17,6 @@
1717
"serve": "vite",
1818
"coverage:copy": "shx mkdir -p ../../coverage && shx cp -u ./coverage/lcov.info ../../coverage/lcov_frontend.info"
1919
},
20-
2120
"dependencies": {
2221
"@mdi/font": "5.1.45",
2322
"@sap-devx/inquirer-gui": "3.0.2",
@@ -36,9 +35,9 @@
3635
},
3736
"devDependencies": {
3837
"@babel/core": "^7.23.0",
39-
"@babel/plugin-transform-runtime": "7.23.6",
4038
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
4139
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
40+
"@babel/plugin-transform-runtime": "7.23.6",
4241
"@babel/preset-env": "^7.22.20",
4342
"@babel/preset-typescript": "^7.23.0",
4443
"@sap-devx/webview-rpc": "0.2.2",

0 commit comments

Comments
 (0)