@csstools/postcss-media-minmax 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +23 -5
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,26 +1,44 @@
1
1
  # Changes to PostCSS Media MinMax
2
2
 
3
- ### 1.0.4 (June 21, 2023)
3
+ ### 1.0.5
4
+
5
+ _July 3, 2023_
6
+
7
+ - Updated [`@csstools/css-parser-algorithms`](/packages/css-parser-algorithms) to [`2.3.0`](/packages/css-parser-algorithms/CHANGELOG.md#230) (minor)
8
+ - Updated [`@csstools/css-calc`](/packages/css-calc) to [`1.1.2`](/packages/css-calc/CHANGELOG.md#112) (patch)
9
+ - Updated [`@csstools/media-query-list-parser`](/packages/media-query-list-parser) to [`2.1.2`](/packages/media-query-list-parser/CHANGELOG.md#212) (patch)
10
+
11
+ ### 1.0.4
12
+
13
+ _June 21, 2023_
4
14
 
5
15
  - Updated `@csstools/media-query-list-parser` to `2.1.1` (patch)
6
16
 
7
17
 
8
- ### 1.0.3 (June 1, 2023)
18
+ ### 1.0.3
19
+
20
+ _June 1, 2023_
9
21
 
10
22
  - Updated `@csstools/media-query-list-parser` to `2.1.0` (minor)
11
23
 
12
24
 
13
- ### 1.0.2 (April 10, 2023)
25
+ ### 1.0.2
26
+
27
+ _April 10, 2023_
14
28
 
15
29
  - Updated `@csstools/css-tokenizer` to `2.1.1` (patch)
16
30
  - Updated `@csstools/css-parser-algorithms` to `2.1.1` (patch)
17
31
  - Updated `@csstools/css-calc` to `1.1.1` (patch)
18
32
  - Updated `@csstools/media-query-list-parser` to `2.0.4` (patch)
19
33
 
20
- ### 1.0.1 (April 10, 2023)
34
+ ### 1.0.1
35
+
36
+ _April 10, 2023_
21
37
 
22
38
  - Improve the detection of math function in media queries.
23
39
 
24
- ### 1.0.0 (March 30, 2023)
40
+ ### 1.0.0
41
+
42
+ _March 30, 2023_
25
43
 
26
44
  - Initial version
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@csstools/postcss-media-minmax",
3
3
  "description": "Use the range notation in CSS media queries",
4
- "version": "1.0.4",
4
+ "version": "1.0.5",
5
5
  "contributors": [
6
6
  {
7
7
  "name": "Antonio Laguna",
@@ -48,10 +48,10 @@
48
48
  "dist"
49
49
  ],
50
50
  "dependencies": {
51
- "@csstools/css-calc": "^1.1.1",
52
- "@csstools/css-parser-algorithms": "^2.2.0",
51
+ "@csstools/css-calc": "^1.1.2",
52
+ "@csstools/css-parser-algorithms": "^2.3.0",
53
53
  "@csstools/css-tokenizer": "^2.1.1",
54
- "@csstools/media-query-list-parser": "^2.1.1"
54
+ "@csstools/media-query-list-parser": "^2.1.2"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "postcss": "^8.4"