Skip to content

Commit

Permalink
Merge pull request #223 from GordonSmith/BUMP_VERSIONS
Browse files Browse the repository at this point in the history
chore:  Bump Versions
  • Loading branch information
GordonSmith committed Apr 29, 2024
2 parents 8f763fc + ca30fdf commit 9e289dc
Show file tree
Hide file tree
Showing 12 changed files with 238 additions and 208 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@

This repository contains a collection of useful c++ libraries compiled to WASM for (re)use in Node JS, Web Browsers and JavaScript Libraries:
- [base91](https://base91.sourceforge.net/) - v0.6.0
- [expat](https://libexpat.github.io/) - v2.5.0
- [graphviz](https://www.graphviz.org/) - v10.0.1
- [expat](https://libexpat.github.io/) - v2.6.2
- [graphviz](https://www.graphviz.org/) - v11.0.0
- [zstd](https://github.com/facebook/zstd) - v1.5.5
- ...more to follow...

Built with:
- [emsdk](https://github.com/emscripten-core/emsdk) - v3.1.53
- [emsdk](https://github.com/emscripten-core/emsdk) - v3.1.58

## Homepage and Documents

Expand Down
407 changes: 216 additions & 191 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,11 @@
"@types/chai": "4.3.14",
"@types/emscripten": "1.39.10",
"@types/mocha": "10.0.6",
"@types/node": "20.11.30",
"@types/node": "20.12.7",
"@types/yargs": "17.0.32",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"assemblyscript": "0.27.25",
"assemblyscript": "0.27.27",
"chai": "5.1.0",
"coveralls": "3.1.1",
"eslint": "8.57.0",
Expand All @@ -148,20 +148,20 @@
"karma-firefox-launcher": "2.1.3",
"karma-mocha": "2.0.1",
"karma-spec-reporter": "0.0.36",
"local-web-server": "5.3.1",
"local-web-server": "5.3.3",
"mocha": "10.4.0",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"rimraf": "5.0.5",
"rollup": "4.13.1",
"rollup": "4.17.1",
"rollup-plugin-sourcemaps": "0.6.3",
"run-script-os": "1.1.6",
"standard-version": "9.5.0",
"tslib": "2.6.2",
"typedoc": "0.25.12",
"typedoc": "0.25.13",
"typedoc-plugin-markdown": "3.17.1",
"typescript": "5.4.3",
"vitepress": "1.0.1"
"typescript": "5.4.5",
"vitepress": "1.1.4"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion scripts/cpp-install-emsdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# List of current vertsion can be found in https://github.com/emscripten-core/emsdk/tags ---
# UPDATE README.md
VERSION=3.1.53
VERSION=3.1.58

if [ ! -d "./emsdk" ]
then
Expand Down
2 changes: 1 addition & 1 deletion scripts/cpp-install-vcpkg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# List of current vertsion can be found in https://github.com/microsoft/vcpkg/releases ---
# UPDATE README.md
VCPKG_BUILD_TOOLS_VERSION=2024.01.12
VCPKG_BUILD_TOOLS_VERSION=2024.03.25

if [ ! -d "./vcpkg" ]
then
Expand Down
2 changes: 2 additions & 0 deletions src-ts/__tests__/base91.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { expect } from "chai";
import { Base91 } from "@hpcc-js/wasm/base91";
import { Zstd } from "@hpcc-js/wasm/zstd";
import { Console } from "node:console";

describe("base91", function () {

Expand All @@ -10,6 +11,7 @@ describe("base91", function () {
let v = base91.version();
expect(v).to.be.a.string;
expect(v).to.not.be.empty;
console.log("base91 version: " + v);
Base91.unload();

base91 = await Base91.load();
Expand Down
1 change: 1 addition & 0 deletions src-ts/__tests__/expat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ describe("expat", function () {
let v = await expat.version();
expect(v).to.be.a.string;
expect(v).to.not.be.empty;
console.log("expat version: " + v);
Expat.unload();

expat = await Expat.load();
Expand Down
1 change: 1 addition & 0 deletions src-ts/__tests__/graphviz.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ describe("graphviz", function () {
let v = graphviz.version();
expect(v).to.be.a.string;
expect(v).to.not.be.empty;
console.log("graphviz version: " + v);
Graphviz.unload();

graphviz = await Graphviz.load();
Expand Down
1 change: 1 addition & 0 deletions src-ts/__tests__/zstd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ describe("zstd", function () {
let v = zstd.version();
expect(v).to.be.a.string;
expect(v).to.not.be.empty;
console.log("zstd version: " + v);

zstd = await Zstd.load();
v = zstd.version();
Expand Down
4 changes: 2 additions & 2 deletions vcpkg-overlays/graphviz/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ vcpkg_from_gitlab(
GITLAB_URL https://gitlab.com
OUT_SOURCE_PATH SOURCE_PATH
REPO graphviz/graphviz
REF 1c6cb9d3de553bd3e3caeea9a61ebe04034d07ee
SHA512 8cee6e7b403c2516d4fd17b9806fa96b46e0791368b8411fa6245e5c30b680fc4e22c4ef59d6d56aaa0dfa449d356a59d4c712e250259ca049c0ceeb1f89b943
REF "${VERSION}"
SHA512 7630de306249059b049967c3a77c6077b04082b07af27e1f0f0ba2659e09827a2f08dbda78c3c4f601bb9c46fdd0db506ba49a1d45cdc27f9daa7a9f3f960732
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": "10.0.0",
"version-semver": "11.0.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
4 changes: 2 additions & 2 deletions vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
},
{
"name": "expat",
"version>=": "2.5.0#3"
"version>=": "2.6.2"
},
{
"name": "graphviz",
"version>=": "10.0.0"
"version>=": "11.0.0"
},
{
"name": "triangle",
Expand Down

0 comments on commit 9e289dc

Please sign in to comment.