Skip to content

Commit

Permalink
feat: Bump Versions
Browse files Browse the repository at this point in the history
Graphviz: 12.1.2
DuckDB: 1.1.1

Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
  • Loading branch information
GordonSmith committed Sep 28, 2024
1 parent 0ab9291 commit 33b44f2
Show file tree
Hide file tree
Showing 10 changed files with 460 additions and 514 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@

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
- [duckdb](https://github.com/duckdb/duckdb) - v0.9.2
- [duckdb](https://github.com/duckdb/duckdb) - v1.1.1
- [expat](https://libexpat.github.io/) - v2.6.2
- [graphviz](https://www.graphviz.org/) - v12.1.1
- [graphviz](https://www.graphviz.org/) - v12.1.2
- [llama.cpp](https://github.com/ggerganov/llama.cpp) - b3718
- [zstd](https://github.com/facebook/zstd) - v1.5.6
- ...more to follow...

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

## Homepage and Documents

Expand Down
932 changes: 439 additions & 493 deletions package-lock.json

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,33 +73,33 @@
"update-major": "npm run update-major-root && lerna run update-major"
},
"devDependencies": {
"@eslint/js": "9.10.0",
"@eslint/js": "9.11.1",
"@hpcc-js/esbuild-plugins": "1.1.2",
"@types/chai": "4.3.19",
"@types/chai": "4.3.20",
"@types/emscripten": "1.39.13",
"@types/node": "22.5.5",
"@types/node": "22.7.4",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "8.6.0",
"@typescript-eslint/parser": "8.6.0",
"assemblyscript": "0.27.29",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"assemblyscript": "0.27.30",
"c8": "10.1.2",
"chai": "5.1.1",
"chokidar-cli": "3.0.0",
"eslint": "9.10.0",
"eslint": "9.11.1",
"globals": "15.9.0",
"jasmine": "5.3.0",
"jasmine-browser-runner": "2.5.0",
"jasmine-core": "5.3.0",
"lerna": "8.1.8",
"npm-run-all": "4.1.5",
"release-please": "16.13.0",
"release-please": "16.14.0",
"rimraf": "6.0.1",
"run-script-os": "1.1.6",
"tslib": "2.7.0",
"typedoc": "0.26.7",
"typedoc-plugin-markdown": "4.2.7",
"typedoc-plugin-markdown": "4.2.8",
"typescript": "5.6.2",
"typescript-eslint": "8.6.0",
"typescript-eslint": "8.7.0",
"vitepress": "1.3.4"
},
"c8": {
Expand Down
2 changes: 1 addition & 1 deletion packages/duckdb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},
"dependencies": {},
"devDependencies": {
"@duckdb/duckdb-wasm": "1.28.1-dev106.0",
"@duckdb/duckdb-wasm": "next",
"mkdirp": "3.0.1"
},
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion packages/duckdb/spec/duckdb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe("duckdb", function () {
const duckdb = await DuckDB.load();
const v = duckdb.version();
expect(v).to.be.a.string;
expect(v).to.equal("v0.9.2");
expect(v).to.equal("v1.1.1");
console.log("duckdb version: " + v);
});

Expand Down
2 changes: 1 addition & 1 deletion packages/graphviz/spec/graphviz.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,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.1"); // Update README.md with the new version!!!
expect(v).to.equal("12.1.2"); // Update README.md with the new version!!!
console.log("graphviz version: " + v);
Graphviz.unload();

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.66
VERSION=3.1.67

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.08.23
VCPKG_BUILD_TOOLS_VERSION=2024.09.23

if [ ! -d "./vcpkg" ]
then
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 cfdd717a1cb608bc43ebfb8cab26d0e1f169b393ec8acad84f40198833ecb60e997ca5c4c6762714468e2eae3e7ef8e8f20e53d61e703900d72383b48ed1419a
SHA512 20f061af6b9daecf4b15b8e924a1d4826b256685f845a7e12e0bcc2e94ef6537ecaa5adb08084492641b3cc9d16a7c98e99f97bffc2c7b92b99af36e1201e6c7
HEAD_REF main
)

Expand Down
4 changes: 2 additions & 2 deletions vcpkg-overlays/graphviz/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "graphviz",
"version-semver": "12.1.1",
"port-version": 1,
"version-semver": "12.1.2",
"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.",
"dependencies": [
Expand Down

0 comments on commit 33b44f2

Please sign in to comment.