Skip to content

Commit

Permalink
chore(📦): 1.0.0
Browse files Browse the repository at this point in the history
## 1.0.0 (2022-12-09)

### Features ✨

* add support for array type ([0d22f1e](0d22f1e))
* add support for nested type ([ec3fbc8](ec3fbc8))
* add support for numeric type with `Int`, `Float` type ([f4bb5d4](f4bb5d4))
* implement basic document generation feature ([8e528d4](8e528d4))
* implement generating table of contents for each properties feature ([0643500](0643500))

### Bug Fixes 🐞

* now array typed field have correct default description content ([f410907](f410907))
* prevent infinite loop while process circular nested type ([5859496](5859496))

### Internal 🧰

* make decorators option parameter optional ([996f55c](996f55c))
  • Loading branch information
async3619 committed Dec 9, 2022
1 parent ebf740c commit abf99ae
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## 1.0.0 (2022-12-09)


### Features ✨

* add support for array type ([0d22f1e](https://github.com/hyper-level-nerds/ts-bookshelf/commit/0d22f1e16f3b8d1ad5c74c21e236c572141a1456))
* add support for nested type ([ec3fbc8](https://github.com/hyper-level-nerds/ts-bookshelf/commit/ec3fbc8752980e120d98a42ef8086ec92569b6f1))
* add support for numeric type with `Int`, `Float` type ([f4bb5d4](https://github.com/hyper-level-nerds/ts-bookshelf/commit/f4bb5d41f0cb209d28570b31ac95bcfad135bd14))
* implement basic document generation feature ([8e528d4](https://github.com/hyper-level-nerds/ts-bookshelf/commit/8e528d4fe6a67affc29e10c1761289755ae24e24))
* implement generating table of contents for each properties feature ([0643500](https://github.com/hyper-level-nerds/ts-bookshelf/commit/06435007edb1da3c4a4d4a6ceb613999cd1afd6f))


### Bug Fixes 🐞

* now array typed field have correct default description content ([f410907](https://github.com/hyper-level-nerds/ts-bookshelf/commit/f4109072a4bd23abea665817daee96cbc6d4282c))
* prevent infinite loop while process circular nested type ([5859496](https://github.com/hyper-level-nerds/ts-bookshelf/commit/58594967057f8e5ad31a717a73e4954e83fb192e))


### Internal 🧰

* make decorators option parameter optional ([996f55c](https://github.com/hyper-level-nerds/ts-bookshelf/commit/996f55c077dd2f671aa0b0b5cca9ee0d6d3f0ff8))
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ts-bookshelf",
"description": "generate markdown-based documentation from typescript types",
"version": "0.0.0",
"version": "1.0.0",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/common.js",
Expand Down

0 comments on commit abf99ae

Please sign in to comment.