Skip to content

Commit e07624b

Browse files
committed
feat(graphviz): Bump version to 2.44.1
Signed-off-by: Gordon Smith <[email protected]>
1 parent 1fef565 commit e07624b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The _GraphViz_ library comes in **two** flavours
5959
<head>
6060
<meta charset="UTF-8">
6161
<title>GraphViz WASM</title>
62-
<script src="https://unpkg.com/@hpcc-js/wasm/dist/index.min.js"></script>
62+
<script src="https://cdn.jsdelivr.net/npm/@hpcc-js/wasm/dist/index.min.js"></script>
6363
<script>
6464
var hpccWasm = window["@hpcc-js/wasm"];
6565
</script>
@@ -268,7 +268,7 @@ Parses the XML with suitable callbacks.
268268
---
269269

270270
## Building @hpcc-js/wasm
271-
_Building is supported on both Linux (tested with Ubuntu 18.04) and Windows with WSL enabled (Ubuntu-18.04). Building in other environments should work, but may be missing certain prerequisites._
271+
_Building is supported on both Linux (tested with Ubuntu 20.04) and Windows with WSL enabled (Ubuntu-20.04). Building in other environments should work, but may be missing certain prerequisites._
272272

273273
These are then known required OS dependencies:
274274
```

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<title>GraphViz WASM</title>
77
<script src="./dist/index.js"></script>
88
<!--
9-
<script src="https://unpkg.com/@hpcc-js/wasm/dist/index.min.js"></script>
9+
<script src="https://cdn.jsdelivr.net/npm/@hpcc-js/wasm/dist/index.min.js"></script>
1010
<script src="./dist/index.js"></script>
1111
-->
1212
<script>

scripts/cpp-install-graphviz.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
if [ ! -d "src-graphviz" ]
44
then
5-
wget -c https://gitlab.com/graphviz/graphviz/-/archive/stable_release_2.44.0/graphviz-stable_release_2.44.0.tar.gz
5+
wget -c https://gitlab.com/graphviz/graphviz/-/archive/2.44.1/graphviz-2.44.1.tar.gz
66
mkdir ./src-graphviz
7-
tar -xzf ./graphviz-stable_release_2.44.0.tar.gz -C ./src-graphviz --strip-components=1
8-
rm ./graphviz-stable_release_2.44.0.tar.gz
7+
tar -xzf ./graphviz-2.44.1.tar.gz -C ./src-graphviz --strip-components=1
8+
rm ./graphviz-2.44.1.tar.gz
99

1010
# Configure ---
1111
cd ./src-graphviz

0 commit comments

Comments
 (0)