diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d31e7e..36b6efb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ 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. +## [7.0.0](https://github.com/rars/ngx-diff/compare/v6.0.1...v7.0.0) (2024-03-10) + +### Features + +- **ngx-diff:** allow truncated placeholder lines to be expanded to reveal hidden content ([481066c](https://github.com/rars/ngx-diff/commit/481066c3828cf32b9900db3994fd3db9e6887302)) + ## [6.0.1](https://github.com/rars/ngx-diff/compare/v6.0.0...v6.0.1) (2024-01-18) ### Bug Fixes diff --git a/README.md b/README.md index 0c386e3..a91fa63 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ It is recommended to use these settings rather than attempt to override styles b | 14 | 3.0.0 | | 15 | 4.0.0 | | 16 | 5.0.0 | -| 17 | 6.0.0 | +| 17 | 6.0.0+ | ## Contributions welcome! diff --git a/package-lock.json b/package-lock.json index 406d96b..cfbb480 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ngx-diff", - "version": "7.0.0-alpha.1", + "version": "7.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "ngx-diff", - "version": "7.0.0-alpha.1", + "version": "7.0.0", "dependencies": { "@angular/animations": "^17.0.0", "@angular/common": "^17.0.0", @@ -18,7 +18,7 @@ "@angular/router": "^17.0.0", "@commitlint/cli": "^18.4.4", "@commitlint/config-conventional": "^18.4.4", - "diff-match-patch-ts": "^0.4.0-rc.1", + "diff-match-patch-ts": "^0.4.0", "rxjs": "~7.8.1", "standard-version": "^9.3.2", "tslib": "^2.3.1", @@ -8584,9 +8584,9 @@ "dev": true }, "node_modules/diff-match-patch-ts": { - "version": "0.4.0-rc.1", - "resolved": "https://registry.npmjs.org/diff-match-patch-ts/-/diff-match-patch-ts-0.4.0-rc.1.tgz", - "integrity": "sha512-Fyh53M0lqh4sQGsBpcVtgAmTEH8btygeHfC6qxAyVsetep5ps3JSFN5nmp9UaOf2taqA7aeKblhIAmJ5+caFfQ==" + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/diff-match-patch-ts/-/diff-match-patch-ts-0.4.0.tgz", + "integrity": "sha512-Og49u5vn/ZtDpFs/Nd4fvHCnI+2/FRtriKhW4TDCx62RoxCB45NasN3tF7/VFUnVkMqmwjCruBC7cQ892Mresw==" }, "node_modules/diff-sequences": { "version": "29.6.3", diff --git a/package.json b/package.json index 322f1d8..1a0d60b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ngx-diff", - "version": "7.0.0-alpha.1", + "version": "7.0.0", "type": "module", "scripts": { "ng": "ng", @@ -23,7 +23,7 @@ "@angular/router": "^17.0.0", "@commitlint/cli": "^18.4.4", "@commitlint/config-conventional": "^18.4.4", - "diff-match-patch-ts": "^0.4.0-rc.1", + "diff-match-patch-ts": "^0.4.0", "rxjs": "~7.8.1", "standard-version": "^9.3.2", "tslib": "^2.3.1", diff --git a/projects/ngx-diff/package.json b/projects/ngx-diff/package.json index cb7dea9..b4d57dc 100644 --- a/projects/ngx-diff/package.json +++ b/projects/ngx-diff/package.json @@ -1,10 +1,10 @@ { "name": "ngx-diff", - "version": "7.0.0-alpha.1", + "version": "7.0.0", "peerDependencies": { "@angular/common": ">=17.0.0", "@angular/core": ">=17.0.0", - "diff-match-patch-ts": ">=0.3.0" + "diff-match-patch-ts": ">=0.4.0" }, "dependencies": { "tslib": "^2.0.0"