poll-50 v2.0.0
Nolan Lawson 2021-08-06 10:48:08 -07:00
rodzic 344a23fddd
commit a1e105ccef
3 zmienionych plików z 14 dodań i 3 usunięć

Wyświetl plik

@ -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`.

5
CHANGELOG.md 100644
Wyświetl plik

@ -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).

Wyświetl plik

@ -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"