Skip to content

Commit

Permalink
chore: bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mxsdev committed Nov 8, 2022
1 parent eef0db3 commit 2604744
Show file tree
Hide file tree
Showing 8 changed files with 57 additions and 7 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.3.0](https://github.com/mxsdev/ts-expand-type/compare/v0.2.0...v0.3.0) (2022-11-08)

### Bug Fixes

- **api:** error getting signature type arguments ([732fe0d](https://github.com/mxsdev/ts-expand-type/commit/732fe0dc034c834aaf495aee04ec286786a54275)), closes [#14](https://github.com/mxsdev/ts-expand-type/issues/14)
- **api:** find nearest signature recursively ([ec3b53b](https://github.com/mxsdev/ts-expand-type/commit/ec3b53bf83abe3d175ac1c44a1b14e2396eb37d7)), closes [#9](https://github.com/mxsdev/ts-expand-type/issues/9)
- **api:** getParameterInfo throws error ([3d0dd77](https://github.com/mxsdev/ts-expand-type/commit/3d0dd77bd587a596c741908bbc4f1dc8ccec8ffa))
- **api:** import ts as pure type ([404a009](https://github.com/mxsdev/ts-expand-type/commit/404a0096d582b90ae8ec6de18e9c918e2a394482))
- **api:** max recursion depth hit unexpectedly ([b97d4de](https://github.com/mxsdev/ts-expand-type/commit/b97d4deea9a68fbc97fc80f4af47965ecbf0ce44)), closes [#10](https://github.com/mxsdev/ts-expand-type/issues/10)
- **api:** use interface symbol as alias ([4a38b19](https://github.com/mxsdev/ts-expand-type/commit/4a38b19ab86f6f47216c3381b7b25ec7286fb10a))

### Features

- **api:** use resolved symbol as alias ([db02e7b](https://github.com/mxsdev/ts-expand-type/commit/db02e7ba7e1ad72eb79b6d41a5a5c5ca014b21b9))
- support modules and namespaces ([670e069](https://github.com/mxsdev/ts-expand-type/commit/670e06970baf7040471aa5967a974a0d521f415a)), closes [#6](https://github.com/mxsdev/ts-expand-type/issues/6) [#7](https://github.com/mxsdev/ts-expand-type/issues/7)
- support readonly ([5848029](https://github.com/mxsdev/ts-expand-type/commit/5848029cfbe116727efa9ed28cc728ebb6dac544))
- **vscode:** hide error messages ([1103cc0](https://github.com/mxsdev/ts-expand-type/commit/1103cc0604dd05588cd17b3b46a8744aa6554477)), closes [#13](https://github.com/mxsdev/ts-expand-type/issues/13)

# [0.2.0](https://github.com/mxsdev/ts-expand-type/compare/v0.1.0...v0.2.0) (2022-10-30)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"useNx": false,
"useWorkspaces": true,
"version": "0.2.0",
"version": "0.3.0",
"npmClient": "yarn"
}
18 changes: 18 additions & 0 deletions packages/api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.3.0](https://github.com/mxsdev/ts-expand-type/compare/v0.2.0...v0.3.0) (2022-11-08)

### Bug Fixes

- **api:** error getting signature type arguments ([732fe0d](https://github.com/mxsdev/ts-expand-type/commit/732fe0dc034c834aaf495aee04ec286786a54275)), closes [#14](https://github.com/mxsdev/ts-expand-type/issues/14)
- **api:** find nearest signature recursively ([ec3b53b](https://github.com/mxsdev/ts-expand-type/commit/ec3b53bf83abe3d175ac1c44a1b14e2396eb37d7)), closes [#9](https://github.com/mxsdev/ts-expand-type/issues/9)
- **api:** getParameterInfo throws error ([3d0dd77](https://github.com/mxsdev/ts-expand-type/commit/3d0dd77bd587a596c741908bbc4f1dc8ccec8ffa))
- **api:** import ts as pure type ([404a009](https://github.com/mxsdev/ts-expand-type/commit/404a0096d582b90ae8ec6de18e9c918e2a394482))
- **api:** max recursion depth hit unexpectedly ([b97d4de](https://github.com/mxsdev/ts-expand-type/commit/b97d4deea9a68fbc97fc80f4af47965ecbf0ce44)), closes [#10](https://github.com/mxsdev/ts-expand-type/issues/10)
- **api:** use interface symbol as alias ([4a38b19](https://github.com/mxsdev/ts-expand-type/commit/4a38b19ab86f6f47216c3381b7b25ec7286fb10a))

### Features

- **api:** use resolved symbol as alias ([db02e7b](https://github.com/mxsdev/ts-expand-type/commit/db02e7ba7e1ad72eb79b6d41a5a5c5ca014b21b9))
- support modules and namespaces ([670e069](https://github.com/mxsdev/ts-expand-type/commit/670e06970baf7040471aa5967a974a0d521f415a)), closes [#6](https://github.com/mxsdev/ts-expand-type/issues/6) [#7](https://github.com/mxsdev/ts-expand-type/issues/7)
- support readonly ([5848029](https://github.com/mxsdev/ts-expand-type/commit/5848029cfbe116727efa9ed28cc728ebb6dac544))
- **vscode:** hide error messages ([1103cc0](https://github.com/mxsdev/ts-expand-type/commit/1103cc0604dd05588cd17b3b46a8744aa6554477)), closes [#13](https://github.com/mxsdev/ts-expand-type/issues/13)

# [0.2.0](https://github.com/mxsdev/ts-expand-type/compare/v0.1.0...v0.2.0) (2022-10-30)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ts-type-explorer/api",
"main": "dist",
"version": "0.2.0",
"version": "0.3.0",
"type": "commonjs",
"license": "MIT",
"devDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/typescript-explorer-vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.3.0](https://github.com/mxsdev/ts-type-explorer/compare/v0.2.0...v0.3.0) (2022-11-08)

### Features

- support modules and namespaces ([670e069](https://github.com/mxsdev/ts-type-explorer/commit/670e06970baf7040471aa5967a974a0d521f415a)), closes [#6](https://github.com/mxsdev/ts-type-explorer/issues/6) [#7](https://github.com/mxsdev/ts-type-explorer/issues/7)
- support readonly ([5848029](https://github.com/mxsdev/ts-type-explorer/commit/5848029cfbe116727efa9ed28cc728ebb6dac544))
- **vscode:** hide error messages ([1103cc0](https://github.com/mxsdev/ts-type-explorer/commit/1103cc0604dd05588cd17b3b46a8744aa6554477)), closes [#13](https://github.com/mxsdev/ts-type-explorer/issues/13)

# [0.2.0](https://github.com/mxsdev/ts-type-explorer/compare/v0.1.0...v0.2.0) (2022-10-30)

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions packages/typescript-explorer-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Explore typescript types",
"publisher": "mxsdev",
"repository": "https://github.com/mxsdev/ts-type-explorer",
"version": "0.2.0",
"version": "0.3.0",
"private": true,
"engines": {
"vscode": "^1.71.0"
Expand Down Expand Up @@ -233,8 +233,8 @@
"test": "node ./out/test/runTest.js"
},
"dependencies": {
"@ts-type-explorer/api": "^0.2.0",
"@ts-type-explorer/typescript-plugin": "^0.2.0"
"@ts-type-explorer/api": "^0.3.0",
"@ts-type-explorer/typescript-plugin": "^0.3.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
Expand Down
6 changes: 6 additions & 0 deletions packages/typescript-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.3.0](https://github.com/mxsdev/ts-expand-type/compare/v0.2.0...v0.3.0) (2022-11-08)

### Features

- **vscode:** hide error messages ([1103cc0](https://github.com/mxsdev/ts-expand-type/commit/1103cc0604dd05588cd17b3b46a8744aa6554477)), closes [#13](https://github.com/mxsdev/ts-expand-type/issues/13)

# [0.2.0](https://github.com/mxsdev/ts-expand-type/compare/v0.1.0...v0.2.0) (2022-10-30)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions packages/typescript-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@ts-type-explorer/typescript-plugin",
"version": "0.2.0",
"version": "0.3.0",
"main": "./dist",
"type": "commonjs",
"license": "MIT",
"private": "true",
"dependencies": {
"@ts-type-explorer/api": "^0.2.0"
"@ts-type-explorer/api": "^0.3.0"
},
"devDependencies": {
"typescript": "^4.8.4"
Expand Down

0 comments on commit 2604744

Please sign in to comment.