Skip to content

Commit

Permalink
chore(release): Release ts-morph 7.0.0 and @ts-morph/bootstrap 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Feb 23, 2020
1 parent 4689780 commit b36caa9
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/bootstrap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ts-morph/bootstrap",
"version": "0.3.0",
"version": "0.4.0",
"description": "API for getting quickly set up with the TypeScript Compiler API.",
"keywords": ["typescript", "compiler", "bootstrap"],
"main": "dist/ts-morph-bootstrap.js",
Expand All @@ -18,7 +18,7 @@
"rollup": "rollup --config"
},
"dependencies": {
"@ts-morph/common": "~0.3.0"
"@ts-morph/common": "~0.4.0"
},
"devDependencies": {
"@types/chai": "^4.2.9",
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ts-morph/common",
"version": "0.3.0",
"version": "0.4.0",
"description": "Common functionality for ts-morph packages.",
"main": "dist/ts-morph-common.js",
"author": "David Sherret",
Expand Down
27 changes: 27 additions & 0 deletions packages/ts-morph/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,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.

<a name="7.0.0"></a>
# [7.0.0](https://github.com/dsherret/ts-morph/compare/6.0.2...7.0.0) (2020-02-23)


### Bug Fixes

* [#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))
* [#783](https://github.com/dsherret/ts-morph/issues/783) - Fix broken documentation links on npm. ([c997339](https://github.com/dsherret/ts-morph/commit/c997339))


### Code Refactoring

* Only support Node 10+. ([2339210](https://github.com/dsherret/ts-morph/commit/2339210))


### Features

* [#779](https://github.com/dsherret/ts-morph/issues/779) - Implement JSDocTemplateTag and JSDocThisTag. ([9bfc32e](https://github.com/dsherret/ts-morph/commit/9bfc32e))
* [#782](https://github.com/dsherret/ts-morph/issues/782) - Add `Node#getProject()` ([35f6bcf](https://github.com/dsherret/ts-morph/commit/35f6bcf))
* Support TypeScript 3.8. ([a2785b4](https://github.com/dsherret/ts-morph/commit/a2785b4))

### BREAKING CHANGES

* Only Node 10+ has full support. Some functionality might not work on older versions of Node.
* Update to TypeScript 3.8.


<a name="6.0.2"></a>
## [6.0.2](https://github.com/dsherret/ts-morph/compare/6.0.1...6.0.2) (2019-12-08)

Expand Down
5 changes: 5 additions & 0 deletions packages/ts-morph/breaking-changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

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

## Version 7

* Only Node 10+ has full support. Some functionality might not work on older versions of Node.
* Update to TypeScript 3.8.

## Version 6

Renames:
Expand Down
4 changes: 2 additions & 2 deletions packages/ts-morph/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ts-morph",
"version": "6.0.2",
"version": "7.0.0",
"description": "TypeScript compiler wrapper for static analysis and code manipulation.",
"main": "dist/ts-morph.js",
"typings": "lib/ts-morph.d.ts",
Expand Down Expand Up @@ -63,7 +63,7 @@
},
"dependencies": {
"@dsherret/to-absolute-glob": "^2.0.2",
"@ts-morph/common": "~0.3.0",
"@ts-morph/common": "~0.4.0",
"code-block-writer": "^10.1.0"
},
"devDependencies": {
Expand Down

0 comments on commit b36caa9

Please sign in to comment.