Skip to content

Commit 53e88cc

Browse files
committed
Release 1.0.6
1 parent 72dd877 commit 53e88cc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [1.0.6] - 2022-05-12
1011
### Fixed
11-
1212
- Upgraded to [@cucumber/language-server 0.10.0](https://github.com/cucumber/language-server/blob/main/CHANGELOG.md#0100---2022-05-12)
1313

1414
## [1.0.5] - 2022-05-11
15-
1615
### Fixed
1716
- Upgraded to [@cucumber/language-server 0.9.0](https://github.com/cucumber/language-server/blob/main/CHANGELOG.md#090---2022-05-11)
1817

@@ -37,7 +36,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3736
### Added
3837
- First release
3938

40-
[Unreleased]: https://github.com/cucumber/vscode/compare/v1.0.5...HEAD
39+
[Unreleased]: https://github.com/cucumber/vscode/compare/v1.0.6...HEAD
40+
[1.0.6]: https://github.com/cucumber/vscode/compare/v1.0.5...v1.0.6
4141
[1.0.5]: https://github.com/cucumber/vscode/compare/v1.0.4...v1.0.5
4242
[1.0.4]: https://github.com/cucumber/vscode/compare/v1.0.3...v1.0.4
4343
[1.0.3]: https://github.com/cucumber/vscode/compare/v1.0.2...v1.0.3

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"title": "Cucumber",
4545
"properties": {
4646
"cucumber.features": {
47-
"markdownDescription": "The `cucumber.features` setting can be used to speciy where the extension\nshould look for `.feature` files.\n\nDefault value:\n\n```json\n{\n \"cucumber.features\": [\n \"features/**/*.feature\",\n \"src/test/**/*.feature\" \n ]\n}\n```",
47+
"markdownDescription": "The `cucumber.features` setting can be used to speciy where the extension\nshould look for `.feature` files. Changing this will only affect autocompletion.\n\nDefault value:\n\n```json\n{\n \"cucumber.features\": [\n \"features/**/*.feature\",\n \"src/test/**/*.feature\" \n ]\n}\n```",
4848
"type": "array",
4949
"required": false,
5050
"default": [
@@ -53,7 +53,7 @@
5353
]
5454
},
5555
"cucumber.glue": {
56-
"markdownDescription": "The `cucumber.glue` setting can be used to speciy where the extension\nshould look for source code where step definitions are defined.\n\nDefault value:\n\n```json\n{\n \"cucumber.glue\": [\n \"features/**/*.php\",\n \"features/**/*.rb\",\n \"features/**/*.ts\",\n \"src/test/**/*.java\",\n \"*specs*/**/.cs\"\n ]\n}\n```",
56+
"markdownDescription": "The `cucumber.glue` setting can be used to speciy where the extension\nshould look for source code where step definitions are defined.\nChanging this will only affect autocompletion.\n\nDefault value:\n\n```json\n{\n \"cucumber.glue\": [\n \"features/**/*.php\",\n \"features/**/*.rb\",\n \"features/**/*.ts\",\n \"src/test/**/*.java\",\n \"*specs*/**/.cs\"\n ]\n}\n```",
5757
"type": "array",
5858
"required": false,
5959
"default": [
@@ -65,7 +65,7 @@
6565
]
6666
},
6767
"cucumber.parameterTypes": {
68-
"markdownDescription": "The `cucumber.parameterTypes` setting can be used to define [Custom Parameter Types](https://github.com/cucumber/cucumber-expressions#custom-parameter-types) that are not directly visible in the source code.\n\nDefault value:\n\n```json\n{\n \"cucumber.parameterTypes\": []\n}\n```\n\nFor example, if you're using the `actor` parameter type from [@cucumber/screenplay](https://github.com/cucumber/screenplay.js#actors) you'll have to declare this in the `parameterTypes` setting:\n\n````json\n{\n \"cucumber.parameterTypes\": [\n { \"name\": \"actor\", \"regexp\": \"[A-Z][a-z]+\" }\n ]\n}\n````",
68+
"markdownDescription": "Override the `cucumber.parameterTypes` setting if your Cucumber Expressions\nare using [Custom Parameter Types](https://github.com/cucumber/cucumber-expressions#custom-parameter-types) that are defined outside your `cucumber.glue` setting.\n\nDefault value:\n\n```json\n{\n \"cucumber.parameterTypes\": []\n}\n```\n\nFor example, if you're using the `actor` parameter type from [@cucumber/screenplay](https://github.com/cucumber/screenplay.js#actors) you'll have to declare this in the `parameterTypes` setting:\n\n````json\n{\n \"cucumber.parameterTypes\": [\n { \"name\": \"actor\", \"regexp\": \"[A-Z][a-z]+\" }\n ]\n}\n````",
6969
"type": "array",
7070
"required": false,
7171
"default": []

0 commit comments

Comments
 (0)