From db85cefd1ced407d1cf197d855cfb23e6e0a82ec Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Sat, 13 Feb 2021 15:11:18 -0330 Subject: [PATCH] Release v0.0.2 (#25) This releases includes some breaking dependency changes, and a new JSON recursive sort option. A changelog has been added for this release and the prior release as well. --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..0780cbe8f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,28 @@ + +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.0.2] - 2021-02-13 +### Added +- JSON Recursive Sort option ([#23](https://github.com/Gudahtt/prettier-plugin-sort-json/pull/23)) + +### Changed +- [**BREAKING**] Update minimum `prettier` version to v2.1.0 ([#21](https://github.com/Gudahtt/prettier-plugin-sort-json/pull/21), [#24](https://github.com/Gudahtt/prettier-plugin-sort-json/pull/24)) +- [**BREAKING**] Move `prettier` from `dependencies` to `peerDependencies` ([#22](https://github.com/Gudahtt/prettier-plugin-sort-json/pull/22)) +- Fix manifest `repository` property ([#17](https://github.com/Gudahtt/prettier-plugin-sort-json/pull/17)) + +### Removed + - Remove unused `@babel/types` dependency ([#20](https://github.com/Gudahtt/prettier-plugin-sort-json/pull/20)) + +## [0.0.1] - 2020-09-22 +### Added +- Initial release + +[Unreleased]: https://github.com/Gudahtt/prettier-plugin-sort-json/compare/v0.0.2...HEAD +[0.0.2]: https://github.com/Gudahtt/prettier-plugin-sort-json/v0.0.1...v0.0.2 +[0.0.1]: https://github.com/Gudahtt/prettier-plugin-sort-json/releases/tag/v0.0.1 diff --git a/package.json b/package.json index cdc9b9128..cede1c56f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "prettier-plugin-sort-json", - "version": "0.0.1", + "version": "0.0.2", "description": "Prettier plugin to sort JSON files alphanumerically by key", "main": "index.js", "repository": {