From 309a8009e6c2ff5e773478aef71cbeb442194062 Mon Sep 17 00:00:00 2001 From: otakustay Date: Tue, 21 Feb 2023 14:57:59 +0800 Subject: [PATCH] chore(release): 3.0.0 --- CHANGELOG.md | 16 ++++++++++++++++ package.json | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..769c512 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,16 @@ +# Changelog + +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. + +## [3.0.0](https://github.com/otakustay/react-diff-view/compare/v2.6.0...v3.0.0) (2023-02-21) + + +### ⚠ BREAKING CHANGES + +* types may not be exactly what you expected +* some code introduces modern grammar like optional chain and template string, not sure the are all transformed by babel + +### Features + +* add TypeScript support ([#189](https://github.com/otakustay/react-diff-view/issues/189)) ([95f634b](https://github.com/otakustay/react-diff-view/commit/95f634b56926c3da540960d7dbc9be29214bf7e6)) +* export util functions to check change type ([30cd5cf](https://github.com/otakustay/react-diff-view/commit/30cd5cfa177897ee2ff328797873ab31347d6120)) diff --git a/package.json b/package.json index 88a4798..5753735 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-diff-view", - "version": "2.6.0", + "version": "3.0.0", "description": "A git diff component to consume the git unified diff output.", "main": "./cjs/index.js", "module": "./es/index.js",