diff --git a/CHANGELOG.md b/CHANGELOG.md index 144310e..2e675be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ # Changelog -## 1.3.3 - 2021-12-13 +## 2.0.0 - 2021-12-13 * Tested against TailwindCSS v3 + * Updated minimum node requirements (v12) * Updated documentation ## 1.3.2 - 2021-02-24 diff --git a/README.md b/README.md index 8e0cf27..acca6c2 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,6 @@ A plugin to provide TailwindCSS utilities for grid areas. -The latest release of this plugin (version 1.3 onwards) will work with TailwindCSS versions 1, 2 and 3. - ## Installation ``` diff --git a/package.json b/package.json index fe149b5..833d4b6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@savvywombat/tailwindcss-grid-areas", - "version": "1.3.3", + "version": "2.0.0", "description": "A plugin to provide TailwindCSS utilities for grid areas.", "keywords": [ "tailwind", @@ -27,6 +27,9 @@ "dependencies": { "lodash": "^4.17.21" }, + "peerDependencies": { + "tailwindcss": "^3.0.1" + }, "devDependencies": { "@babel/cli": "^7.16.0", "@babel/core": "^7.16.0", @@ -49,7 +52,7 @@ "@babel/preset-env", { "targets": { - "node": "8.9.0" + "node": "12.22.0" } } ]