Skip to content

Commit

Permalink
21.0.0 (#1479)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Dec 2, 2023
1 parent 432f43f commit fe18369
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/bootstrap/package.json
@@ -1,6 +1,6 @@
{
"name": "@ts-morph/bootstrap",
"version": "0.21.0",
"version": "0.22.0",
"description": "API for getting quickly set up with the TypeScript Compiler API.",
"keywords": [
"typescript",
Expand All @@ -24,7 +24,7 @@
"rollup": "rollup -c"
},
"dependencies": {
"@ts-morph/common": "~0.21.0"
"@ts-morph/common": "~0.22.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
@@ -1,6 +1,6 @@
{
"name": "@ts-morph/common",
"version": "0.21.0",
"version": "0.22.0",
"description": "Common functionality for ts-morph packages.",
"main": "dist/ts-morph-common.js",
"author": "David Sherret",
Expand Down
23 changes: 23 additions & 0 deletions packages/ts-morph/CHANGELOG.md
Expand Up @@ -2,6 +2,29 @@

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="21.0.0"></a>
# [21.0.0](https://github.com/dsherret/ts-morph/compare/20.0.0...21.0.0) (2023-12-02)


### Features

* `ProjectOptions::defaultCompilerOptions` ([#1460](https://github.com/dsherret/ts-morph/issues/1460)) ([b5dee3d](https://github.com/dsherret/ts-morph/commit/b5dee3d))
* add interface and type literal getters & setters ([#1473](https://github.com/dsherret/ts-morph/issues/1473)) ([339f685](https://github.com/dsherret/ts-morph/commit/339f685))
* add wrapped method for `getShorthandAssignmentValueSymbol` to `TypeChecker` ([#1456](https://github.com/dsherret/ts-morph/issues/1456)) ([1d8b382](https://github.com/dsherret/ts-morph/commit/1d8b382))
* TypeScript 5.3 ([#1476](https://github.com/dsherret/ts-morph/issues/1476)) ([010a269](https://github.com/dsherret/ts-morph/commit/010a269))


### Performance Improvements

* use path.exists functions that don't throw internally when not exists ([#1478](https://github.com/dsherret/ts-morph/issues/1478)) ([432f43f](https://github.com/dsherret/ts-morph/commit/432f43f))


### BREAKING CHANGES

- Upgraded to TS 5.3
- Underlying `@ts-morph/common` file system methods return undefined instead of throwing when not exists (for perf).
- Private fields are actually private (default build requires private fields).

<a name="20.0.0"></a>

# [20.0.0](https://github.com/dsherret/ts-morph/compare/19.0.0...20.0.0) (2023-09-11)
Expand Down
6 changes: 6 additions & 0 deletions packages/ts-morph/breaking-changes.md
Expand Up @@ -2,6 +2,12 @@

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

## Version 21

- Upgraded to TS 5.3
- Underlying `@ts-morph/common` file system methods return undefined instead of throwing when not exists (for perf).
- Private fields are actually private (default build requires private fields).

## Version 20

- Upgraded to TS 5.2
Expand Down
4 changes: 2 additions & 2 deletions packages/ts-morph/package.json
@@ -1,6 +1,6 @@
{
"name": "ts-morph",
"version": "20.0.0",
"version": "21.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 @@ -44,7 +44,7 @@
},
"homepage": "https://github.com/dsherret/ts-morph#readme",
"dependencies": {
"@ts-morph/common": "~0.21.0",
"@ts-morph/common": "~0.22.0",
"code-block-writer": "^12.0.0"
},
"devDependencies": {
Expand Down

0 comments on commit fe18369

Please sign in to comment.