Skip to content

Commit

Permalink
Merge pull request #279 from GordonSmith/BUMP_VERSIONS
Browse files Browse the repository at this point in the history
feat: Bump graphviz version to 12.2.0
  • Loading branch information
GordonSmith authored Nov 5, 2024
2 parents 37db45e + 0427987 commit 7c276d3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This repository contains a collection of useful c++ libraries compiled to WASM f
- [base91](https://base91.sourceforge.net/) - v0.6.0
- [duckdb](https://github.com/duckdb/duckdb) - v1.1.1
- [expat](https://libexpat.github.io/) - v2.6.2
- [graphviz](https://www.graphviz.org/) - v12.1.2
- [graphviz](https://www.graphviz.org/) - v12.2.0
- [llama.cpp](https://github.com/ggerganov/llama.cpp) - b3718
- [zstd](https://github.com/facebook/zstd) - v1.5.6
- ...more to follow...
Expand Down
2 changes: 1 addition & 1 deletion packages/graphviz/tests/graphviz.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe("graphviz", function () {
let graphviz = await Graphviz.load();
let v = graphviz.version();
expect(v).to.be.a.string;
expect(v).to.equal("12.1.2"); // Update README.md with the new version!!!
expect(v).to.equal("12.2.0"); // Update README.md with the new version!!!
console.log("graphviz version: " + v);
Graphviz.unload();

Expand Down
2 changes: 1 addition & 1 deletion vcpkg-overlays/graphviz/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ vcpkg_from_gitlab(
OUT_SOURCE_PATH SOURCE_PATH
REPO graphviz/graphviz
REF "${VERSION}"
SHA512 20f061af6b9daecf4b15b8e924a1d4826b256685f845a7e12e0bcc2e94ef6537ecaa5adb08084492641b3cc9d16a7c98e99f97bffc2c7b92b99af36e1201e6c7
SHA512 34706c23416fdd8bedcadf5ae501e66892016034baa6603e69665ca1582db0eddf7731d5aae347ae985e12cc0f96f4c2887d474231f71755813520f0c6e5a5f2
HEAD_REF main
)

Expand Down
2 changes: 1 addition & 1 deletion vcpkg-overlays/graphviz/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphviz",
"version-semver": "12.1.2",
"version-semver": "12.2.0",
"port-version": 0,
"homepage": "https://graphviz.org/",
"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.",
Expand Down

0 comments on commit 7c276d3

Please sign in to comment.