Skip to content

Commit

Permalink
chore(release): v0.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
schoero committed Jan 18, 2025
1 parent 83b808c commit 4d45b48
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## v0.2.14

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

### Features

- Add `typeQuery` type ([3ddd6c66](https://github.com/schoero/unwritten/commit/3ddd6c66))

### Fixes

- Add type arguments ([4dcbdb11](https://github.com/schoero/unwritten/commit/4dcbdb11))
- Rendering of additional whitespaces ([83b808c2](https://github.com/schoero/unwritten/commit/83b808c2))

### Styles

- Eslint fixes ([cf979713](https://github.com/schoero/unwritten/commit/cf979713))

## v0.2.13

[compare changes](https://github.com/schoero/unwritten/compare/v0.2.7...v0.2.13)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.2.13",
"version": "0.2.14",
"type": "module",
"name": "unwritten",
"description": "unwritten is a cli tool that auto generates documentation from your JavaScript or TypeScript project by utilizing TSDoc or JSDoc comments.",
Expand Down
24 changes: 24 additions & 0 deletions schemas/renderer/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,18 @@
],
"type": "object"
},
"typeArgumentEncapsulation": {
"anyOf": [
{
"const": false,
"type": "boolean"
},
{
"$ref": "#/definitions/Encapsulation"
}
],
"description": "Defines how type arguments should be encapsulated in the rendered output."
},
"typeEncapsulation": {
"anyOf": [
{
Expand Down Expand Up @@ -975,6 +987,18 @@
],
"type": "object"
},
"typeArgumentEncapsulation": {
"anyOf": [
{
"const": false,
"type": "boolean"
},
{
"$ref": "#/definitions/Encapsulation"
}
],
"description": "Defines how type arguments should be encapsulated in the rendered output."
},
"typeEncapsulation": {
"anyOf": [
{
Expand Down

0 comments on commit 4d45b48

Please sign in to comment.