From dcfa1d41487c48fc46de78325939c16d9dff59c3 Mon Sep 17 00:00:00 2001 From: Jeff Hansen Date: Mon, 8 Oct 2018 11:25:01 +0200 Subject: [PATCH] docs: add changelog --- CHANGELOG.md | 41 +++++++++++++++++++++++++++++++++++++++++ README.md | 4 ++++ 2 files changed, 45 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ff1f010 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,41 @@ +# v0.4.0 + +- Support monorepos by reading `packages`/`workspaces` and syncing matching `package.json` files ([#11](https://github.com/jeffijoe/typesync/issues/11)) +- Save typings with the same semver range specifier as the code package ([#12](https://github.com/jeffijoe/typesync/issues/12)) +- Updated CLI output to accomodate syncing a monorepo + +# v0.3.1 + +- Exclude test files from package + +# v0.3.0 + +- Update packages + +# v0.2.5 + +- Scoped package support + +# v0.2.4 + +- Add note about running `npm install` or `yarn` + +# v0.2.3 + +- Add `engines` field to `package.json` + +# v0.2.2 + +- Fix typo in package name + +# v0.2.0 + +- Preserve trailing newline when writing `package.json` to disk + +# v0.1.1 + +- `util.promisify` polyfill for Node 6 support + +# v0.1.0 + +- Initial release diff --git a/README.md b/README.md index ba12556..49695a5 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,10 @@ If you use a Semver `^` or `~` for a package, the same prefix will be used for t Installing typings manually sucks. Flow has `flow-typed` which installs type definitions by looking at a `package.json`, which would be cool to have for TypeScript. Now we do! +# Changelog + +See [CHANGELOG.md](/CHANGELOG.md) + # Author Jeff Hansen - [@Jeffijoe](https://twitter.com/jeffijoe)