diff --git a/package-lock.json b/package-lock.json index 026140f1c..8c2f768ef 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2039,10 +2039,10 @@ }, "packages/bootstrap": { "name": "@ts-morph/bootstrap", - "version": "0.23.0", + "version": "0.24.0", "license": "MIT", "dependencies": { - "@ts-morph/common": "~0.23.0" + "@ts-morph/common": "~0.24.0" }, "devDependencies": { "@rollup/plugin-typescript": "^11.1.6", @@ -2130,7 +2130,7 @@ }, "packages/common": { "name": "@ts-morph/common", - "version": "0.23.0", + "version": "0.24.0", "license": "MIT", "dependencies": { "fast-glob": "^3.3.2", @@ -2223,10 +2223,10 @@ } }, "packages/ts-morph": { - "version": "22.0.0", + "version": "23.0.0", "license": "MIT", "dependencies": { - "@ts-morph/common": "~0.23.0", + "@ts-morph/common": "~0.24.0", "code-block-writer": "^13.0.1" }, "devDependencies": { @@ -2615,7 +2615,7 @@ "version": "file:packages/bootstrap", "requires": { "@rollup/plugin-typescript": "^11.1.6", - "@ts-morph/common": "~0.23.0", + "@ts-morph/common": "~0.24.0", "@types/chai": "^4.3.16", "@types/mocha": "^10.0.7", "@types/node": "^20.14.8", @@ -3542,7 +3542,7 @@ "version": "file:packages/ts-morph", "requires": { "@rollup/plugin-typescript": "^11.1.6", - "@ts-morph/common": "~0.23.0", + "@ts-morph/common": "~0.24.0", "@types/chai": "^4.3.16", "@types/diff": "^5.2.1", "@types/mocha": "^10.0.7", diff --git a/packages/bootstrap/package.json b/packages/bootstrap/package.json index 72cb2922d..38bc98aa1 100644 --- a/packages/bootstrap/package.json +++ b/packages/bootstrap/package.json @@ -1,6 +1,6 @@ { "name": "@ts-morph/bootstrap", - "version": "0.23.0", + "version": "0.24.0", "description": "API for getting quickly set up with the TypeScript Compiler API.", "keywords": [ "typescript", @@ -24,7 +24,7 @@ "rollup": "rollup -c" }, "dependencies": { - "@ts-morph/common": "~0.23.0" + "@ts-morph/common": "~0.24.0" }, "devDependencies": { "@rollup/plugin-typescript": "^11.1.6", diff --git a/packages/common/package.json b/packages/common/package.json index 34b3d46e8..c1d196bec 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@ts-morph/common", - "version": "0.23.0", + "version": "0.24.0", "description": "Common functionality for ts-morph packages.", "main": "dist/ts-morph-common.js", "author": "David Sherret", diff --git a/packages/ts-morph/CHANGELOG.md b/packages/ts-morph/CHANGELOG.md index a03785fc6..88d47f48c 100644 --- a/packages/ts-morph/CHANGELOG.md +++ b/packages/ts-morph/CHANGELOG.md @@ -2,6 +2,23 @@ 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. +## [23.0.0](https://github.com/dsherret/ts-morph/compare/22.0.0...23.0.0) (2024-06-23) + + +### BREAKING CHANGES + +* Upgraded to TypeScript 5.5 + +### Features + +* Type.prototype.isBigInt and isBigIntLiteral ([#1546](https://github.com/dsherret/ts-morph/issues/1546)) ([b3d01c8](https://github.com/dsherret/ts-morph/commit/b3d01c8418dde927c8b37c1fe8819a33406a5c56)) +* TypeScript 5.5 ([#1545](https://github.com/dsherret/ts-morph/issues/1545)) ([868755d](https://github.com/dsherret/ts-morph/commit/868755d25a3d695733be010e304fa3c394fbb86f)) + + +### Bug Fixes + +* handle removeDefaultImport with type only import ([#1547](https://github.com/dsherret/ts-morph/issues/1547)) ([1cf6a6b](https://github.com/dsherret/ts-morph/commit/1cf6a6b4e0db1d9c802394ac66f55166bd03b83d)) + # [22.0.0](https://github.com/dsherret/ts-morph/compare/21.0.1...22.0.0) (2024-03-10) diff --git a/packages/ts-morph/package.json b/packages/ts-morph/package.json index 3800bed74..bcd051bb6 100644 --- a/packages/ts-morph/package.json +++ b/packages/ts-morph/package.json @@ -1,6 +1,6 @@ { "name": "ts-morph", - "version": "22.0.0", + "version": "23.0.0", "description": "TypeScript compiler wrapper for static analysis and code manipulation.", "main": "dist/ts-morph.js", "typings": "lib/ts-morph.d.ts", @@ -44,7 +44,7 @@ }, "homepage": "https://github.com/dsherret/ts-morph#readme", "dependencies": { - "@ts-morph/common": "~0.23.0", + "@ts-morph/common": "~0.24.0", "code-block-writer": "^13.0.1" }, "devDependencies": {