Skip to content

Commit 7a942d4

Browse files
committed
3.1.1
1 parent 48ecd5a commit 7a942d4

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ project adheres to [Semantic Versioning](http://semver.org/).
99
==================
1010
### Changed
1111
### Added
12+
### Fixed
1213

14+
3.1.1
15+
==================
1316
### Fixed
1417
* Fix a crash when SVGs without width or height are loaded (#2486)
1518
* Fix fetching prebuilds during installation on certain newer versions of Node (#2497)
@@ -20,6 +23,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
2023

2124
3.1.0
2225
==================
26+
### Changed
2327
* Replaced `simple-get ` with ` Node.js builtin` `fetch` (#2309)
2428
* `ctx.font` has a new C++ parser and is 2x-400x faster. Please file an issue if you experience different results, as caching has been removed.
2529
* The restriction of registering fonts before a canvas is created has been removed. You can now register a font as late as right before the `fillText` call ([#1921](https://github.com/Automattic/node-canvas/issues/1921))

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "canvas",
33
"description": "Canvas graphics API backed by Cairo",
4-
"version": "3.1.0",
4+
"version": "3.1.1",
55
"author": "TJ Holowaychuk <tj@learnboost.com>",
66
"main": "index.js",
77
"browser": "browser.js",
@@ -63,7 +63,9 @@
6363
"node": "^18.12.0 || >= 20.9.0"
6464
},
6565
"binary": {
66-
"napi_versions": [7]
66+
"napi_versions": [
67+
7
68+
]
6769
},
6870
"license": "MIT"
6971
}

0 commit comments

Comments
 (0)