Skip to content

Commit 26cf6f9

Browse files
authored
🔖 Release version 1.2.0 (#18)
1 parent 13426b3 commit 26cf6f9

File tree

4 files changed

+16
-19
lines changed

4 files changed

+16
-19
lines changed

.prettierrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
{
77
"files": "*.md",
88
"options": {
9-
"parser": "markdown"
9+
"parser": "markdown",
10+
"printWidth": 9999
1011
}
1112
}
1213
]

CHANGELOG.md

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,32 @@
22

33
## [Unreleased]
44

5+
## [1.2.0] - 2021-09-06
6+
57
### Changed
68

7-
- Small snippet improvements to reach a better user experience
8-
- Move Next.js function documentaion into a table view
9+
- Small snippet improvements to reach a better user experience [[#16](https://github.com/mheob/vscode-snippets/pull/16)]
10+
- Move Next.js function documentaion into a table view [[#17](https://github.com/mheob/vscode-snippets/pull/17)]
911

1012
## [1.1.0] - 2021-09-03
1113

1214
### Added
1315

14-
- Add `getServerSideProps`, `getStaticPaths` and `getStaticProps` snippets
15-
[[#14](https://github.com/mheob/vscode-snippets/pull/14)]
16+
- Add `getServerSideProps`, `getStaticPaths` and `getStaticProps` snippets [[#14](https://github.com/mheob/vscode-snippets/pull/14)]
1617

1718
### Changed
1819

19-
- Use json as file extension for the source snippets files
20-
[[#13](https://github.com/mheob/vscode-snippets/pull/13)]
20+
- Use json as file extension for the source snippets files [[#13](https://github.com/mheob/vscode-snippets/pull/13)]
2121

2222
### Fixed
2323

24-
- Add missing return type to the React Function Component in the readme
25-
[[#11](https://github.com/mheob/vscode-snippets/pull/11)]
24+
- Add missing return type to the React Function Component in the readme [[#11](https://github.com/mheob/vscode-snippets/pull/11)]
2625

2726
## [1.0.2] - 2021-08-31
2827

2928
### Added
3029

31-
- Add Return type and remove extra default export from React Function Component and update all
32-
dependencies [[#8](https://github.com/mheob/vscode-snippets/pull/8)]
30+
- Add Return type and remove extra default export from React Function Component and update all dependencies [[#8](https://github.com/mheob/vscode-snippets/pull/8)]
3331
- Add the markdown snippets to the readme [[#6](https://github.com/mheob/vscode-snippets/pull/6)]
3432

3533
## [1.0.1] - 2021-08-24
@@ -42,10 +40,10 @@
4240

4341
### Added
4442

45-
- First running state with some snippets [[#1](https://github.com/mheob/vscode-snippets/pull/1)]
46-
[[#2](https://github.com/mheob/vscode-snippets/pull/2)]
43+
- First running state with some snippets [[#1](https://github.com/mheob/vscode-snippets/pull/1)] [[#2](https://github.com/mheob/vscode-snippets/pull/2)]
4744

48-
[unreleased]: https://github.com/mheob/vscode-snippets/compare/v1.1.0...HEAD
45+
[unreleased]: https://github.com/mheob/vscode-snippets/compare/v1.2.0...HEAD
46+
[1.2.0]: https://github.com/mheob/vscode-snippets/compare/v1.1.0...v1.2.0
4947
[1.1.0]: https://github.com/mheob/vscode-snippets/compare/v1.0.2...v1.1.0
5048
[1.0.2]: https://github.com/mheob/vscode-snippets/compare/v1.0.1...v1.0.2
5149
[1.0.1]: https://github.com/mheob/vscode-snippets/compare/v1.0.0...v1.0.1

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
# Snippets for Next.js, React in TypeScript
22

3-
[![Version](https://vsmarketplacebadge.apphb.com/version-short/mheob.vscode-snippets.svg?style=for-the-badge&logo=visual-studio-code&logoColor=007ACC)](https://marketplace.visualstudio.com/items?itemName=mheob.vscode-snippets)
4-
[![GitHub issues](https://img.shields.io/github/issues/mheob/vscode-snippets?logo=github&style=for-the-badge)](https://github.com/mheob/vscode-snippets)
3+
[![Version](https://vsmarketplacebadge.apphb.com/version-short/mheob.vscode-snippets.svg?style=for-the-badge&logo=visual-studio-code&logoColor=007ACC)](https://marketplace.visualstudio.com/items?itemName=mheob.vscode-snippets) [![GitHub issues](https://img.shields.io/github/issues/mheob/vscode-snippets?logo=github&style=for-the-badge)](https://github.com/mheob/vscode-snippets) [![Gitmoji](https://img.shields.io/badge/gitmoji-%20😜%20😍-FFDD67.svg?style=for-the-badge)](https://gitmoji.dev)
54

6-
This extension provides you Snippets for the development with Next.js, React in a TypeScript
7-
environment in [VS Code](https://code.visualstudio.com/).
5+
This extension provides you Snippets for the development with Next.js, React in a TypeScript environment in [VS Code](https://code.visualstudio.com/).
86

97
## Supported languages (file extensions)
108

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vscode-snippets",
33
"displayName": "Snippets for Next.js, React in TypeScript",
4-
"version": "1.1.0",
4+
"version": "1.2.0",
55
"description": "Snippets for the development with Next.js, React in a TypeScript environment.",
66
"categories": [
77
"Snippets"

0 commit comments

Comments
 (0)