Skip to content

Commit 6e2c4a3

Browse files
committedFeb 10, 2021
Merge branch '3.x' into master
2 parents 93a9d3f + 69fed50 commit 6e2c4a3

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55
### Removed
66
- **BREAKING**: RDFa parser moved to `jsonld-rdfa` package.
77

8+
## 3.3.1 - 2021-02-10
9+
10+
### Fixed
11+
- Add `lru-cache` to packages run through babel for bundles. Fixes use of arrow
12+
functions.
13+
814
## 3.3.0 - 2021-01-21
915

1016
### Changed

‎karma.conf.js

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ module.exports = function(config) {
8686
// include specific packages
8787
include: [
8888
/(node_modules\/canonicalize)/,
89+
/(node_modules\/lru-cache)/,
8990
/(node_modules\/rdf-canonize)/
9091
]
9192
}],

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsonld",
3-
"version": "3.3.1-0",
3+
"version": "3.3.2-0",
44
"description": "A JSON-LD Processor and API implementation in JavaScript.",
55
"homepage": "https://github.com/digitalbazaar/jsonld.js",
66
"author": {

‎webpack.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ outputs.forEach(info => {
6868
// include specific packages
6969
include: [
7070
/(node_modules\/canonicalize)/,
71+
/(node_modules\/lru-cache)/,
7172
/(node_modules\/rdf-canonize)/
7273
]
7374
}],

0 commit comments

Comments
 (0)
Please sign in to comment.