Skip to content

Commit 7c276d3

Browse files
authored
Merge pull request #279 from GordonSmith/BUMP_VERSIONS
feat: Bump graphviz version to 12.2.0
2 parents 37db45e + 0427987 commit 7c276d3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This repository contains a collection of useful c++ libraries compiled to WASM f
99
- [base91](https://base91.sourceforge.net/) - v0.6.0
1010
- [duckdb](https://github.com/duckdb/duckdb) - v1.1.1
1111
- [expat](https://libexpat.github.io/) - v2.6.2
12-
- [graphviz](https://www.graphviz.org/) - v12.1.2
12+
- [graphviz](https://www.graphviz.org/) - v12.2.0
1313
- [llama.cpp](https://github.com/ggerganov/llama.cpp) - b3718
1414
- [zstd](https://github.com/facebook/zstd) - v1.5.6
1515
- ...more to follow...

packages/graphviz/tests/graphviz.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ describe("graphviz", function () {
3434
let graphviz = await Graphviz.load();
3535
let v = graphviz.version();
3636
expect(v).to.be.a.string;
37-
expect(v).to.equal("12.1.2"); // Update README.md with the new version!!!
37+
expect(v).to.equal("12.2.0"); // Update README.md with the new version!!!
3838
console.log("graphviz version: " + v);
3939
Graphviz.unload();
4040

vcpkg-overlays/graphviz/portfile.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ vcpkg_from_gitlab(
33
OUT_SOURCE_PATH SOURCE_PATH
44
REPO graphviz/graphviz
55
REF "${VERSION}"
6-
SHA512 20f061af6b9daecf4b15b8e924a1d4826b256685f845a7e12e0bcc2e94ef6537ecaa5adb08084492641b3cc9d16a7c98e99f97bffc2c7b92b99af36e1201e6c7
6+
SHA512 34706c23416fdd8bedcadf5ae501e66892016034baa6603e69665ca1582db0eddf7731d5aae347ae985e12cc0f96f4c2887d474231f71755813520f0c6e5a5f2
77
HEAD_REF main
88
)
99

vcpkg-overlays/graphviz/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphviz",
3-
"version-semver": "12.1.2",
3+
"version-semver": "12.2.0",
44
"port-version": 0,
55
"homepage": "https://graphviz.org/",
66
"description": "Graphviz is open source graph visualization software. Graph visualization is a way of representing structural information as diagrams of abstract graphs and networks. It has important applications in networking, bioinformatics, software engineering, database and web design, machine learning, and in visual interfaces for other technical domains.",

0 commit comments

Comments
 (0)