Skip to content

Commit

Permalink
feat: Bump Versions (#241)
Browse files Browse the repository at this point in the history
Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
  • Loading branch information
GordonSmith authored Aug 13, 2024
1 parent c522aec commit 55a2969
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 24 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) - v0.9.2
- [expat](https://libexpat.github.io/) - v2.6.2
- [graphviz](https://www.graphviz.org/) - v12.0.0
- [graphviz](https://www.graphviz.org/) - v12.1.0
- [zstd](https://github.com/facebook/zstd) - v1.5.6
- ...more to follow...

Expand Down
19 changes: 0 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/graphviz/test/graphviz.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe("graphviz", function () {
let graphviz = await Graphviz.load();
let v = graphviz.version();
expect(v).to.be.a.string;
expect(v).to.equal("12.0.0");
expect(v).to.equal("12.1.0");
console.log("graphviz version: " + v);
Graphviz.unload();

Expand Down
2 changes: 1 addition & 1 deletion packages/wasm/test/graphviz.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe("graphviz", function () {
let graphviz = await Graphviz.load();
let v = graphviz.version();
expect(v).to.be.a.string;
expect(v).to.equal("12.0.0");
expect(v).to.equal("12.1.0");
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 2b19fa78b9b121140546e679a6d8892b54ca4fe13a8b51a3b3fd9dd90dc910891931e5e8194a5c9324cbb112007416dc841063d84c90eb5e678da16adc8eeff9
SHA512 cd99efeb4516b34f32b3c4432bf022dd412919b502edcc54541f112e5330bd14fe3fdecc819fc482cd57a8e1b2ee93d85793531fadf2f3b4422c317a0b3b049d
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.0.0",
"version-semver": "12.1.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 55a2969

Please sign in to comment.