Skip to content

Commit 7c3a202

Browse files
authored
Merge pull request #275 from GordonSmith/BUMP_VERSIONS
feat: Bump Versions
2 parents 0ab9291 + 33b44f2 commit 7c3a202

File tree

10 files changed

+460
-514
lines changed

10 files changed

+460
-514
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77

88
This repository contains a collection of useful c++ libraries compiled to WASM for (re)use in Node JS, Web Browsers and JavaScript Libraries:
99
- [base91](https://base91.sourceforge.net/) - v0.6.0
10-
- [duckdb](https://github.com/duckdb/duckdb) - v0.9.2
10+
- [duckdb](https://github.com/duckdb/duckdb) - v1.1.1
1111
- [expat](https://libexpat.github.io/) - v2.6.2
12-
- [graphviz](https://www.graphviz.org/) - v12.1.1
12+
- [graphviz](https://www.graphviz.org/) - v12.1.2
1313
- [llama.cpp](https://github.com/ggerganov/llama.cpp) - b3718
1414
- [zstd](https://github.com/facebook/zstd) - v1.5.6
1515
- ...more to follow...
1616

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

2020
## Homepage and Documents
2121

package-lock.json

Lines changed: 439 additions & 493 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -73,33 +73,33 @@
7373
"update-major": "npm run update-major-root && lerna run update-major"
7474
},
7575
"devDependencies": {
76-
"@eslint/js": "9.10.0",
76+
"@eslint/js": "9.11.1",
7777
"@hpcc-js/esbuild-plugins": "1.1.2",
78-
"@types/chai": "4.3.19",
78+
"@types/chai": "4.3.20",
7979
"@types/emscripten": "1.39.13",
80-
"@types/node": "22.5.5",
80+
"@types/node": "22.7.4",
8181
"@types/yargs": "17.0.33",
82-
"@typescript-eslint/eslint-plugin": "8.6.0",
83-
"@typescript-eslint/parser": "8.6.0",
84-
"assemblyscript": "0.27.29",
82+
"@typescript-eslint/eslint-plugin": "8.7.0",
83+
"@typescript-eslint/parser": "8.7.0",
84+
"assemblyscript": "0.27.30",
8585
"c8": "10.1.2",
8686
"chai": "5.1.1",
8787
"chokidar-cli": "3.0.0",
88-
"eslint": "9.10.0",
88+
"eslint": "9.11.1",
8989
"globals": "15.9.0",
9090
"jasmine": "5.3.0",
9191
"jasmine-browser-runner": "2.5.0",
9292
"jasmine-core": "5.3.0",
9393
"lerna": "8.1.8",
9494
"npm-run-all": "4.1.5",
95-
"release-please": "16.13.0",
95+
"release-please": "16.14.0",
9696
"rimraf": "6.0.1",
9797
"run-script-os": "1.1.6",
9898
"tslib": "2.7.0",
9999
"typedoc": "0.26.7",
100-
"typedoc-plugin-markdown": "4.2.7",
100+
"typedoc-plugin-markdown": "4.2.8",
101101
"typescript": "5.6.2",
102-
"typescript-eslint": "8.6.0",
102+
"typescript-eslint": "8.7.0",
103103
"vitepress": "1.3.4"
104104
},
105105
"c8": {

packages/duckdb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
},
4141
"dependencies": {},
4242
"devDependencies": {
43-
"@duckdb/duckdb-wasm": "1.28.1-dev106.0",
43+
"@duckdb/duckdb-wasm": "next",
4444
"mkdirp": "3.0.1"
4545
},
4646
"keywords": [

packages/duckdb/spec/duckdb.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe("duckdb", function () {
99
const duckdb = await DuckDB.load();
1010
const v = duckdb.version();
1111
expect(v).to.be.a.string;
12-
expect(v).to.equal("v0.9.2");
12+
expect(v).to.equal("v1.1.1");
1313
console.log("duckdb version: " + v);
1414
});
1515

packages/graphviz/spec/graphviz.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe("graphviz", function () {
3636
let graphviz = await Graphviz.load();
3737
let v = graphviz.version();
3838
expect(v).to.be.a.string;
39-
expect(v).to.equal("12.1.1"); // Update README.md with the new version!!!
39+
expect(v).to.equal("12.1.2"); // Update README.md with the new version!!!
4040
console.log("graphviz version: " + v);
4141
Graphviz.unload();
4242

scripts/cpp-install-emsdk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# List of current vertsion can be found in https://github.com/emscripten-core/emsdk/tags ---
44
# UPDATE README.md
5-
VERSION=3.1.66
5+
VERSION=3.1.67
66

77
if [ ! -d "./emsdk" ]
88
then

scripts/cpp-install-vcpkg.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# List of current vertsion can be found in https://github.com/microsoft/vcpkg/releases ---
44
# UPDATE README.md
5-
VCPKG_BUILD_TOOLS_VERSION=2024.08.23
5+
VCPKG_BUILD_TOOLS_VERSION=2024.09.23
66

77
if [ ! -d "./vcpkg" ]
88
then

vcpkg-overlays/graphviz/portfile.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ vcpkg_from_gitlab(
33
OUT_SOURCE_PATH SOURCE_PATH
44
REPO graphviz/graphviz
55
REF "${VERSION}"
6-
SHA512 cfdd717a1cb608bc43ebfb8cab26d0e1f169b393ec8acad84f40198833ecb60e997ca5c4c6762714468e2eae3e7ef8e8f20e53d61e703900d72383b48ed1419a
6+
SHA512 20f061af6b9daecf4b15b8e924a1d4826b256685f845a7e12e0bcc2e94ef6537ecaa5adb08084492641b3cc9d16a7c98e99f97bffc2c7b92b99af36e1201e6c7
77
HEAD_REF main
88
)
99

vcpkg-overlays/graphviz/vcpkg.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "graphviz",
3-
"version-semver": "12.1.1",
4-
"port-version": 1,
3+
"version-semver": "12.1.2",
4+
"port-version": 0,
55
"homepage": "https://graphviz.org/",
66
"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.",
77
"dependencies": [

0 commit comments

Comments
 (0)