Skip to content

Commit 4d45b48

Browse files
committed
chore(release): v0.2.14
1 parent 83b808c commit 4d45b48

File tree

3 files changed

+42
-1
lines changed

3 files changed

+42
-1
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## v0.2.14
4+
5+
[compare changes](https://github.com/schoero/unwritten/compare/v0.2.13...v0.2.14)
6+
7+
### Features
8+
9+
- Add `typeQuery` type ([3ddd6c66](https://github.com/schoero/unwritten/commit/3ddd6c66))
10+
11+
### Fixes
12+
13+
- Add type arguments ([4dcbdb11](https://github.com/schoero/unwritten/commit/4dcbdb11))
14+
- Rendering of additional whitespaces ([83b808c2](https://github.com/schoero/unwritten/commit/83b808c2))
15+
16+
### Styles
17+
18+
- Eslint fixes ([cf979713](https://github.com/schoero/unwritten/commit/cf979713))
19+
320
## v0.2.13
421

522
[compare changes](https://github.com/schoero/unwritten/compare/v0.2.7...v0.2.13)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.2.13",
2+
"version": "0.2.14",
33
"type": "module",
44
"name": "unwritten",
55
"description": "unwritten is a cli tool that auto generates documentation from your JavaScript or TypeScript project by utilizing TSDoc or JSDoc comments.",

schemas/renderer/config.json

+24
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,18 @@
494494
],
495495
"type": "object"
496496
},
497+
"typeArgumentEncapsulation": {
498+
"anyOf": [
499+
{
500+
"const": false,
501+
"type": "boolean"
502+
},
503+
{
504+
"$ref": "#/definitions/Encapsulation"
505+
}
506+
],
507+
"description": "Defines how type arguments should be encapsulated in the rendered output."
508+
},
497509
"typeEncapsulation": {
498510
"anyOf": [
499511
{
@@ -975,6 +987,18 @@
975987
],
976988
"type": "object"
977989
},
990+
"typeArgumentEncapsulation": {
991+
"anyOf": [
992+
{
993+
"const": false,
994+
"type": "boolean"
995+
},
996+
{
997+
"$ref": "#/definitions/Encapsulation"
998+
}
999+
],
1000+
"description": "Defines how type arguments should be encapsulated in the rendered output."
1001+
},
9781002
"typeEncapsulation": {
9791003
"anyOf": [
9801004
{

0 commit comments

Comments
 (0)