From 1067ccee10b9fb99a755d12638e902f0cf38fc65 Mon Sep 17 00:00:00 2001 From: Adam Wathan Date: Sun, 4 Oct 2020 13:10:47 -0400 Subject: [PATCH] Promote `defaultLineHeights` and `standardFontWeights` from experimental to future --- CHANGELOG.md | 1 + src/featureFlags.js | 9 ++++++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 296a8cb9a..a927f5497 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Don't escape keyframe values ([#2432](https://github.com/tailwindlabs/tailwindcss/pull/2432)) - Add experimental `2xl` breakpoint ([#2468](https://github.com/tailwindlabs/tailwindcss/pull/2471)) - Add `col-span-full` and `row-span-full` ([#2471](https://github.com/tailwindlabs/tailwindcss/pull/2471)) +- Promote `defaultLineHeights` and `standardFontWeights` from experimental to future ## [1.8.11] - 2020-10-06 diff --git a/src/featureFlags.js b/src/featureFlags.js index 631318990..cb9a303ab 100644 --- a/src/featureFlags.js +++ b/src/featureFlags.js @@ -3,15 +3,18 @@ import chalk from 'chalk' import log from './util/log' const featureFlags = { - future: ['removeDeprecatedGapUtilities', 'purgeLayersByDefault'], + future: [ + 'removeDeprecatedGapUtilities', + 'purgeLayersByDefault', + 'defaultLineHeights', + 'standardFontWeights', + ], experimental: [ 'uniformColorPalette', 'extendedSpacingScale', - 'defaultLineHeights', 'extendedFontSizeScale', 'applyComplexClasses', 'darkModeVariant', - 'standardFontWeights', 'additionalBreakpoint', ], }