Skip to content

feat: Bump versions #290

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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) - v1.1.3
- [duckdb](https://github.com/duckdb/duckdb) - v1.1.1
- [expat](https://libexpat.github.io/) - v2.6.2
- [graphviz](https://www.graphviz.org/) - v12.2.0
- [graphviz](https://www.graphviz.org/) - v12.2.1
- [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.71
- [emsdk](https://github.com/emscripten-core/emsdk) - v3.1.73

## Homepage and Documents

Expand Down
2,107 changes: 1,193 additions & 914 deletions package-lock.json

Large diffs are not rendered by default.

36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,34 +75,34 @@
"update-major": "npm run update-major-root && lerna run update-major"
},
"devDependencies": {
"@eslint/js": "9.14.0",
"@eslint/js": "9.16.0",
"@hpcc-js/esbuild-plugins": "1.2.0",
"@types/emscripten": "1.39.13",
"@types/node": "22.9.0",
"@types/node": "22.10.1",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.13.0",
"@vitest/browser": "2.1.4",
"@vitest/coverage-istanbul": "2.1.4",
"@vitest/coverage-v8": "2.1.4",
"assemblyscript": "0.27.30",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"@vitest/browser": "2.1.8",
"@vitest/coverage-istanbul": "2.1.8",
"@vitest/coverage-v8": "2.1.8",
"assemblyscript": "0.27.31",
"chokidar-cli": "3.0.0",
"eslint": "9.14.0",
"globals": "15.12.0",
"happy-dom": "^15.9.0",
"eslint": "9.16.0",
"globals": "15.13.0",
"happy-dom": "^15.11.7",
"lerna": "8.1.9",
"npm-run-all": "4.1.5",
"playwright": "1.48.2",
"release-please": "16.14.3",
"playwright": "1.49.1",
"release-please": "16.15.0",
"rimraf": "6.0.1",
"run-script-os": "1.1.6",
"tslib": "2.8.1",
"typedoc": "0.26.11",
"typedoc-plugin-markdown": "4.2.10",
"typescript": "5.6.3",
"typescript-eslint": "8.13.0",
"typedoc": "0.27.4",
"typedoc-plugin-markdown": "4.3.2",
"typescript": "5.7.2",
"typescript-eslint": "8.18.0",
"vitepress": "1.5.0",
"vitest": "2.1.4"
"vitest": "2.1.8"
},
"c8": {
"exclude-after-remap": []
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": "next",
"@duckdb/duckdb-wasm": "1.29.0",
"mkdirp": "3.0.1"
},
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion packages/duckdb/tests/duckdb.browser.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe("duckdb", function () {
const duckdb = await DuckDB.load();
const v = duckdb.version();
expect(v).to.be.a.string;
expect(v).to.equal("v1.1.3"); // Update README.md if this changes
expect(v).to.equal("v1.1.1"); // Update README.md if this changes
console.log("duckdb version: " + v);
});

Expand Down
2 changes: 1 addition & 1 deletion packages/graphviz/tests/graphviz.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.0"); // Update README.md with the new version!!!
expect(v).to.equal("12.2.1"); // 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.71
VERSION=3.1.73

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.10.21
VCPKG_BUILD_TOOLS_VERSION=2024.11.16

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 34706c23416fdd8bedcadf5ae501e66892016034baa6603e69665ca1582db0eddf7731d5aae347ae985e12cc0f96f4c2887d474231f71755813520f0c6e5a5f2
SHA512 fb30d96878e5ea124d26c8823003473a5024f80e418919ff23653086a20ecd6c0cf9c1bbb01e711f22c851a90ae28e711bba3f3e7b0146bb84b4974f6580a600
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.2.0",
"version-semver": "12.2.1",
"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
Loading