@csstools/css-calc 1.1.0 → 1.1.2

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 +22 -3
  2. package/package.json +13 -7
package/CHANGELOG.md CHANGED
@@ -1,13 +1,32 @@
1
1
  # Changes to CSS Calc
2
2
 
3
- ### 1.1.0 (April 10, 2023)
3
+ ### 1.1.2
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
+
9
+ ### 1.1.1
10
+
11
+ _April 10, 2023_
12
+
13
+ - Updated `@csstools/css-tokenizer` to `2.1.1` (patch)
14
+ - Updated `@csstools/css-parser-algorithms` to `2.1.1` (patch)
15
+
16
+ ### 1.1.0
17
+
18
+ _April 10, 2023_
4
19
 
5
20
  - Expose the list of supported math functions.
6
21
 
7
- ### 1.0.1 (March 25, 2023)
22
+ ### 1.0.1
23
+
24
+ _March 25, 2023_
8
25
 
9
26
  - Improve case insensitive string matching.
10
27
 
11
- ### 1.0.0 (February 21, 2023)
28
+ ### 1.0.0
29
+
30
+ _February 21, 2023_
12
31
 
13
32
  - Initial version
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@csstools/css-calc",
3
3
  "description": "Solve CSS math expressions",
4
- "version": "1.1.0",
4
+ "version": "1.1.2",
5
5
  "contributors": [
6
6
  {
7
7
  "name": "Antonio Laguna",
@@ -14,10 +14,16 @@
14
14
  }
15
15
  ],
16
16
  "license": "MIT",
17
- "funding": {
18
- "type": "opencollective",
19
- "url": "https://opencollective.com/csstools"
20
- },
17
+ "funding": [
18
+ {
19
+ "type": "github",
20
+ "url": "https://github.com/sponsors/csstools"
21
+ },
22
+ {
23
+ "type": "opencollective",
24
+ "url": "https://opencollective.com/csstools"
25
+ }
26
+ ],
21
27
  "engines": {
22
28
  "node": "^14 || ^16 || >=18"
23
29
  },
@@ -39,8 +45,8 @@
39
45
  "dist"
40
46
  ],
41
47
  "peerDependencies": {
42
- "@csstools/css-parser-algorithms": "^2.0.1",
43
- "@csstools/css-tokenizer": "^2.0.1"
48
+ "@csstools/css-parser-algorithms": "^2.3.0",
49
+ "@csstools/css-tokenizer": "^2.1.1"
44
50
  },
45
51
  "scripts": {
46
52
  "build": "rollup -c ../../rollup/default.mjs",