From a1e105ccef762eef339ec50d28d025c3959af60d Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Fri, 6 Aug 2021 10:48:08 -0700 Subject: [PATCH] 2.0.0 --- BREAKING_CHANGES.md | 10 ++++++++-- CHANGELOG.md | 5 +++++ package.json | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/BREAKING_CHANGES.md b/BREAKING_CHANGES.md index 48369595..cb9c33e1 100644 --- a/BREAKING_CHANGES.md +++ b/BREAKING_CHANGES.md @@ -1,10 +1,16 @@ # Breaking changes -This document contains a list of _breaking changes_ for Pinafore. For a full changelog, see [the GitHub release page](https://github.com/nolanlawson/pinafore/releases). +This document contains a list of _breaking changes_ for Pinafore. For a full changelog, see [GitHub releases](https://github.com/nolanlawson/pinafore/releases). + +## 2.0.0 + +For self-hosters, the new minimum Node.js versions are v12.20+, v14.14+, or v16.0+ [due to native ES Modules](https://github.com/nolanlawson/pinafore/pull/2064). + +Please check your Node version using `node --version` and update as necessary. ## 1.0.0 -**Breaking change:** This version [switches Pinafore from npm to yarn](https://github.com/nolanlawson/pinafore/pull/927). Those who self-host Pinafore will need to make the following changes: +This version [switches Pinafore from npm to yarn](https://github.com/nolanlawson/pinafore/pull/927). Those who self-host Pinafore will need to make the following changes: 1. [Install yarn](https://yarnpkg.com/en/docs/install) if you haven't already. 2. Instead of `npm install`, run `yarn --pure-lockfile`. diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..f63abe1f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +# Changelog + +For full release notes, see [GitHub releases](https://github.com/nolanlawson/pinafore/releases). + +For breaking changes, see [BREAKING_CHANGES.md](https://github.com/nolanlawson/pinafore/blob/master/BREAKING_CHANGES.md). diff --git a/package.json b/package.json index 2764dd54..3eb8d594 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "pinafore", "description": "Alternative web client for Mastodon", - "version": "1.24.5", + "version": "2.0.0", "type": "module", "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0"