Skip to content

Commit b36caa9

Browse files
committed
chore(release): Release ts-morph 7.0.0 and @ts-morph/bootstrap 0.4.0
1 parent 4689780 commit b36caa9

File tree

5 files changed

+37
-5
lines changed

5 files changed

+37
-5
lines changed

packages/bootstrap/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ts-morph/bootstrap",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"description": "API for getting quickly set up with the TypeScript Compiler API.",
55
"keywords": ["typescript", "compiler", "bootstrap"],
66
"main": "dist/ts-morph-bootstrap.js",
@@ -18,7 +18,7 @@
1818
"rollup": "rollup --config"
1919
},
2020
"dependencies": {
21-
"@ts-morph/common": "~0.3.0"
21+
"@ts-morph/common": "~0.4.0"
2222
},
2323
"devDependencies": {
2424
"@types/chai": "^4.2.9",

packages/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ts-morph/common",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"description": "Common functionality for ts-morph packages.",
55
"main": "dist/ts-morph-common.js",
66
"author": "David Sherret",

packages/ts-morph/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,33 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
<a name="7.0.0"></a>
6+
# [7.0.0](https://github.com/dsherret/ts-morph/compare/6.0.2...7.0.0) (2020-02-23)
7+
8+
9+
### Bug Fixes
10+
11+
* [#778](https://github.com/dsherret/ts-morph/issues/778) - Fixes error being thrown when inserting after a jsdoc and the jsdoc is the last member or statement. ([e069eff](https://github.com/dsherret/ts-morph/commit/e069eff))
12+
* [#783](https://github.com/dsherret/ts-morph/issues/783) - Fix broken documentation links on npm. ([c997339](https://github.com/dsherret/ts-morph/commit/c997339))
13+
14+
15+
### Code Refactoring
16+
17+
* Only support Node 10+. ([2339210](https://github.com/dsherret/ts-morph/commit/2339210))
18+
19+
20+
### Features
21+
22+
* [#779](https://github.com/dsherret/ts-morph/issues/779) - Implement JSDocTemplateTag and JSDocThisTag. ([9bfc32e](https://github.com/dsherret/ts-morph/commit/9bfc32e))
23+
* [#782](https://github.com/dsherret/ts-morph/issues/782) - Add `Node#getProject()` ([35f6bcf](https://github.com/dsherret/ts-morph/commit/35f6bcf))
24+
* Support TypeScript 3.8. ([a2785b4](https://github.com/dsherret/ts-morph/commit/a2785b4))
25+
26+
### BREAKING CHANGES
27+
28+
* Only Node 10+ has full support. Some functionality might not work on older versions of Node.
29+
* Update to TypeScript 3.8.
30+
31+
532
<a name="6.0.2"></a>
633
## [6.0.2](https://github.com/dsherret/ts-morph/compare/6.0.1...6.0.2) (2019-12-08)
734

packages/ts-morph/breaking-changes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
View [CHANGELOG.md](CHANGELOG.md) for more detail on releases. This file is only a high level overview of breaking changes.
44

5+
## Version 7
6+
7+
* Only Node 10+ has full support. Some functionality might not work on older versions of Node.
8+
* Update to TypeScript 3.8.
9+
510
## Version 6
611

712
Renames:

packages/ts-morph/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ts-morph",
3-
"version": "6.0.2",
3+
"version": "7.0.0",
44
"description": "TypeScript compiler wrapper for static analysis and code manipulation.",
55
"main": "dist/ts-morph.js",
66
"typings": "lib/ts-morph.d.ts",
@@ -63,7 +63,7 @@
6363
},
6464
"dependencies": {
6565
"@dsherret/to-absolute-glob": "^2.0.2",
66-
"@ts-morph/common": "~0.3.0",
66+
"@ts-morph/common": "~0.4.0",
6767
"code-block-writer": "^10.1.0"
6868
},
6969
"devDependencies": {

0 commit comments

Comments
 (0)