Skip to content

Commit

Permalink
release 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rikukissa committed May 22, 2021
1 parent 38e75e2 commit a9bd6bc
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,12 @@ configure({

## Release Notes

## [1.6.2] - 2021-05-22

### Fixed

- Fixes null values marking fields as optional. `[{"foo": null}, {"foo": 2}]` now generates a type `{foo: null | number}[]` and not `{foo?: number}[]` like it used to. Should fix [#14](https://github.com/rikukissa/typehole/issues/14)

## [1.6.1] - 2021-05-22

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions packages/extension/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"publisher": "rikurouvila",
"description": "🧪 Take samples of runtime values and turn them into type definitions automatically",
"repository": "https://github.com/rikukissa/typehole",
"version": "1.6.1",
"version": "1.6.2",
"private": true,
"icon": "images/logo.png",
"galleryBanner": {
Expand Down
4 changes: 2 additions & 2 deletions packages/runtime/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.6.1",
"version": "1.6.2",
"name": "typehole",
"repository": "rikukissa/typehole",
"description": "Turn runtime types into static typescript types automatically",
Expand Down

0 comments on commit a9bd6bc

Please sign in to comment.