From f8083234f7e512fc6f757f6167344c5aca765499 Mon Sep 17 00:00:00 2001 From: Gordon Smith Date: Mon, 4 Nov 2024 16:23:09 +0000 Subject: [PATCH] feat: Bump graphviz version to 12.2.0 Signed-off-by: Gordon Smith --- .github/workflows/ossar-analysis.yml | 2 +- README.md | 2 +- packages/graphviz/tests/graphviz.spec.ts | 2 +- vcpkg-overlays/graphviz/portfile.cmake | 2 +- vcpkg-overlays/graphviz/vcpkg.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ossar-analysis.yml b/.github/workflows/ossar-analysis.yml index d04773ca..208c0c95 100644 --- a/.github/workflows/ossar-analysis.yml +++ b/.github/workflows/ossar-analysis.yml @@ -38,7 +38,7 @@ jobs: # Run open source static analysis tools - name: Run OSSAR - uses: github/ossar-action@v1 + uses: github/ossar-action@v2 id: ossar # Upload results to the Security tab diff --git a/README.md b/README.md index 6ab9a0bc..9b44ae06 100644 --- a/README.md +++ b/README.md @@ -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... diff --git a/packages/graphviz/tests/graphviz.spec.ts b/packages/graphviz/tests/graphviz.spec.ts index 9363d543..28c93c40 100644 --- a/packages/graphviz/tests/graphviz.spec.ts +++ b/packages/graphviz/tests/graphviz.spec.ts @@ -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(); diff --git a/vcpkg-overlays/graphviz/portfile.cmake b/vcpkg-overlays/graphviz/portfile.cmake index 9f29fa6f..deb620a5 100644 --- a/vcpkg-overlays/graphviz/portfile.cmake +++ b/vcpkg-overlays/graphviz/portfile.cmake @@ -3,7 +3,7 @@ vcpkg_from_gitlab( OUT_SOURCE_PATH SOURCE_PATH REPO graphviz/graphviz REF "${VERSION}" - SHA512 20f061af6b9daecf4b15b8e924a1d4826b256685f845a7e12e0bcc2e94ef6537ecaa5adb08084492641b3cc9d16a7c98e99f97bffc2c7b92b99af36e1201e6c7 + SHA512 34706c23416fdd8bedcadf5ae501e66892016034baa6603e69665ca1582db0eddf7731d5aae347ae985e12cc0f96f4c2887d474231f71755813520f0c6e5a5f2 HEAD_REF main ) diff --git a/vcpkg-overlays/graphviz/vcpkg.json b/vcpkg-overlays/graphviz/vcpkg.json index c8c4f739..09967a3d 100644 --- a/vcpkg-overlays/graphviz/vcpkg.json +++ b/vcpkg-overlays/graphviz/vcpkg.json @@ -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.",