Skip to content

Commit b2171d5

Browse files
committed
Bump to version 0.7.3
1 parent 86d2f30 commit b2171d5

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## 0.7.3
4+
5+
* Fix a bug where nested uses of `SourceMapConsumer` could result in a
6+
`TypeError`. [#338](https://github.com/mozilla/source-map/issues/338)
7+
[#330](https://github.com/mozilla/source-map/issues/330)
8+
[#319](https://github.com/mozilla/source-map/issues/319)
9+
310
## 0.7.2
411

512
* Another 3x speed up in `SourceMapConsumer`. Read about it here:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ This is a library to generate and consume the source map format
1717

1818
## Use on the Web
1919

20-
<script src="https://unpkg.com/[email protected].2/dist/source-map.js"></script>
20+
<script src="https://unpkg.com/[email protected].3/dist/source-map.js"></script>
2121
<script>
2222
sourceMap.SourceMapConsumer.initialize({
23-
"lib/mappings.wasm": "https://unpkg.com/[email protected].2/lib/mappings.wasm"
23+
"lib/mappings.wasm": "https://unpkg.com/[email protected].3/lib/mappings.wasm"
2424
});
2525
</script>
2626

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "source-map",
33
"description": "Generates and consumes source maps",
4-
"version": "0.7.2",
4+
"version": "0.7.3",
55
"homepage": "https://github.com/mozilla/source-map",
66
"author": "Nick Fitzgerald <[email protected]>",
77
"contributors": [

0 commit comments

Comments
 (0)