|
1 | 1 | # Change Log
|
2 | 2 |
|
3 |
| -### 3.0.2 — 2022-05-06 |
| 3 | +## 3.0.3 — 2022-12-21 |
4 | 4 |
|
5 |
| -#### 🐛 Fixed |
| 5 | +### Patch Changes |
| 6 | + |
| 7 | +- Fix precision loss with fractional pixel font-sizes [#178](https://github.com/stormwarning/tailwindcss-capsize/pull/178) |
| 8 | + |
| 9 | + Thanks [@andriytyurnikov](https://github.com/andriytyurnikov)! |
| 10 | + |
| 11 | +## 3.0.2 — 2022-05-06 |
| 12 | + |
| 13 | +### 🐛 Fixed |
6 | 14 |
|
7 | 15 | - Use correct custom property with default lineHeight values [#153](https://github.com/stormwarning/tailwindcss-capsize/pull/153)
|
8 | 16 |
|
9 | 17 | Fixes issue with a `leading-*` class being required even with fontSize values including a default lineHeight.
|
10 | 18 |
|
11 |
| -### 3.0.1 — 2022-01-17 |
| 19 | +## 3.0.1 — 2022-01-17 |
12 | 20 |
|
13 |
| -#### 🐛 Fixed |
| 21 | +### 🐛 Fixed |
14 | 22 |
|
15 | 23 | - Remove unit from `--font-size-px` custom property [#128](https://github.com/stormwarning/tailwindcss-capsize/pull/128)
|
16 | 24 |
|
|
19 | 27 |
|
20 | 28 | ## 3.0.0 — 2022-01-11
|
21 | 29 |
|
22 |
| -#### 💣 Breaking Changes |
| 30 | +### 💣 Breaking Changes |
23 | 31 |
|
24 | 32 | - Add `modern` output mode [#123](https://github.com/stormwarning/tailwindcss-capsize/pull/123)
|
25 | 33 |
|
|
29 | 37 |
|
30 | 38 | ## 2.1.0 — 2021-09-21
|
31 | 39 |
|
32 |
| -#### 🎁 Added |
| 40 | +### 🎁 Added |
33 | 41 |
|
34 | 42 | - Allow custom activation class via new `className` option [#103](https://github.com/stormwarning/tailwindcss-capsize/pull/103)
|
35 | 43 |
|
|
39 | 47 |
|
40 | 48 | ## 2.0.0 — 2021-09-21
|
41 | 49 |
|
42 |
| -#### 💣 Breaking Changes |
| 50 | +### 💣 Breaking Changes |
43 | 51 |
|
44 | 52 | - Use new `@capsize/core` library [#94](https://github.com/stormwarning/tailwindcss-capsize/pull/94) Thanks [@DylanVann](https://github.com/DylanVann)!
|
45 | 53 | This _will_ change the final output CSS, as the technique to perform
|
46 | 54 | the leading trim has been simplified. See the [capsize release notes](https://github.com/seek-oss/capsize/releases/tag/capsize%402.0.0)
|
47 | 55 | for more details.
|
48 | 56 |
|
49 |
| -#### 🐛 Fixed |
| 57 | +### 🐛 Fixed |
50 | 58 |
|
51 | 59 | - Fix usage when `require`ing plugin [#95](https://github.com/stormwarning/tailwindcss-capsize/pull/95) Thanks [@DylanVann](https://github.com/DylanVann)!
|
52 | 60 |
|
|
55 | 63 | + require('tailwindcss-capsize')
|
56 | 64 | ```
|
57 | 65 |
|
58 |
| -### 1.2.2 — 2021-03-03 |
| 66 | +## 1.2.2 — 2021-03-03 |
59 | 67 |
|
60 |
| -#### 🐛 Fixed |
| 68 | +### 🐛 Fixed |
61 | 69 |
|
62 | 70 | - Fix issue requiring an empty options object to be passed in [#68](https://github.com/stormwarning/tailwindcss-capsize/pull/68)
|
63 | 71 |
|
|
66 | 74 | + require('tailwindcss-capsize')
|
67 | 75 | ```
|
68 | 76 |
|
69 |
| -### 1.2.1 — 2021-02-08 |
| 77 | +## 1.2.1 — 2021-02-08 |
70 | 78 |
|
71 |
| -#### 🐛 Fixed |
| 79 | +### 🐛 Fixed |
72 | 80 |
|
73 | 81 | - Avoid error when `normalizeValue` gets an array [`e18c905`](https://github.com/stormwarning/tailwindcss-capsize/commit/e18c9055f2f5607c6c2d58c96fa0cfb46bb1e1c6)
|
74 | 82 | Still needs to account fully for Tailwind v2 configs, but this helps.
|
75 | 83 |
|
76 | 84 | ## 1.2.0 — 2020-10-11
|
77 | 85 |
|
78 |
| -#### 🎁 Added |
| 86 | +### 🎁 Added |
79 | 87 |
|
80 | 88 | - Allow unitless or percentage-based leading values [#34](https://github.com/stormwarning/tailwindcss-capsize/pull/34)
|
81 | 89 | Uses the inherited `font-size` to determine pixel `line-height` value.
|
82 | 90 |
|
83 |
| -#### 🐛 Fixed |
| 91 | +### 🐛 Fixed |
84 | 92 |
|
85 | 93 | - Use correct path for `types` import [#30](https://github.com/stormwarning/tailwindcss-capsize/pull/30)
|
86 | 94 | This should clear up any TypeScript warnings during local builds.
|
87 | 95 |
|
88 | 96 | ## 1.1.0 — 2020-09-04
|
89 | 97 |
|
90 |
| -#### 💣 Breaking Changes |
| 98 | +### 💣 Breaking Changes |
91 | 99 |
|
92 | 100 | - Rename plugin using common prefix convention [`eac9127`](https://github.com/stormwarning/tailwindcss-capsize/commit/eac91277f979ef4233790deedb76cf3ac9b8a9c1) \
|
93 | 101 | `tailwind-capsize` → `tailwindcss-capsize`
|
94 | 102 |
|
95 |
| -### 1.0.3 — 2020-09-03 |
| 103 | +## 1.0.3 — 2020-09-03 |
96 | 104 |
|
97 |
| -#### ♻️ Changed |
| 105 | +### ♻️ Changed |
98 | 106 |
|
99 | 107 | - Cleaned out unused code and fix up docs examples [`bc1372f`](https://github.com/stormwarning/tailwindcss-capsize/commit/bc1372f8a6b96a0b19d2ce48dcbda598a715c25c)
|
100 | 108 |
|
101 |
| -### 1.0.2 — 2020-09-01 |
| 109 | +## 1.0.2 — 2020-09-01 |
102 | 110 |
|
103 |
| -#### 🐛 Fixed |
| 111 | +### 🐛 Fixed |
104 | 112 |
|
105 | 113 | - Fixed error when trying to set a custom root font-size value [#16](https://github.com/stormwarning/tailwindcss-capsize/pull/16)
|
106 | 114 |
|
107 |
| -### 1.0.1 — 2020-08-13 |
| 115 | +## 1.0.1 — 2020-08-13 |
108 | 116 |
|
109 |
| -#### 🐛 Fixed |
| 117 | +### 🐛 Fixed |
110 | 118 |
|
111 | 119 | - Added actual README and package description & keywords [`327886e`](https://github.com/stormwarning/tailwindcss-capsize/commit/327886ed2b57e76a12424bf6050ac193e0c23d10)
|
112 | 120 |
|
|
0 commit comments