Skip to content

Commit

Permalink
updating motoko doc to 0.13.4 (#3826)
Browse files Browse the repository at this point in the history
  • Loading branch information
crusso authored Dec 2, 2024
1 parent 199af3e commit e96ac21
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/motoko/version.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Motoko Version

The release of Motoko documented here, currently 0.13.3, may be a few versions
The release of Motoko documented here, currently 0.13.4, may be a few versions
ahead of the Motoko compiler that is shipped with dfx.

You can, however, instruct `dfx` to use a newer version of Motoko than the one
Expand Down
2 changes: 1 addition & 1 deletion static/load_moc.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import ExecutionEnvironment from "@docusaurus/ExecutionEnvironment";

const MOC_VERSION = "0.13.3";
const MOC_VERSION = "0.13.4";

async function addPackage(name, repo, version, dir) {
const meta_url = `https://data.jsdelivr.com/v1/package/gh/${repo}@${version}/flat`;
Expand Down
1 change: 0 additions & 1 deletion static/moc-interpreter-0.13.3.js

This file was deleted.

1 change: 1 addition & 0 deletions static/moc-interpreter-0.13.4.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion submodules/motoko
Submodule motoko updated 65 files
+1 −1 .github/workflows/niv-updater-rare.yml
+1 −1 .github/workflows/niv-updater-trial.yml
+1 −1 .github/workflows/niv-updater.yml
+17 −1 Changelog.md
+8 −25 default.nix
+7 −5 doc/md/base/Float.md
+44 −5 doc/md/writing-motoko/intercanister-calls.md
+1 −3 nix/default.nix
+4 −4 nix/drun.nix
+8 −22 nix/sources.json
+32 −170 rts/Makefile
+2 −2 rts/README.md
+2 −0 rts/motoko-rts-tests/src/gc/heap.rs
+4 −2 rts/motoko-rts-tests/src/print.rs
+1 −2 rts/motoko-rts/Cargo.toml
+1 −0 rts/motoko-rts/config.toml
+3 −1 rts/motoko-rts/native/Cargo.toml
+0 −31 rts/motoko-rts/src/allocator.rs
+1 −1 rts/motoko-rts/src/blob_iter.rs
+6 −4 rts/motoko-rts/src/continuation_table.rs
+38 −5 rts/motoko-rts/src/float.rs
+0 −39 rts/motoko-rts/src/float/classical.rs
+0 −39 rts/motoko-rts/src/float/enhanced.rs
+1 −1 rts/motoko-rts/src/gc/incremental/partitioned_heap.rs
+5 −2 rts/motoko-rts/src/gc/incremental/roots/enhanced.rs
+6 −13 rts/motoko-rts/src/lib.rs
+0 −23 rts/motoko-rts/src/libc_declarations.rs
+3 −1 rts/motoko-rts/src/region.rs
+1 −1 rts/motoko-rts/src/text_iter.rs
+0 −7 rts/motoko-rts/src/types.rs
+57 −0 rts/motoko-rts/wasm32-unknown-shared.json
+59 −0 rts/motoko-rts/wasm64-unknown-shared.json
+0 −18 rts/stubs.c
+26 −26 src/codegen/compile_classical.ml
+26 −26 src/codegen/compile_enhanced.ml
+291 −117 src/linking/linkModule.ml
+2 −2 src/prelude/internals.mo
+2 −1 src/wasm-exts/ast.ml
+9 −4 src/wasm-exts/customModule.ml
+36 −15 src/wasm-exts/customModuleDecode.ml
+3 −2 src/wasm-exts/customModuleEncode.ml
+2 −1 src/wasm-exts/operators.ml
+2 −2 test/bench/ok/bignum.drun-run.ok
+1 −1 test/bench/ok/candid-subtype-cost.drun-run.ok
+2 −2 test/bench/ok/heap-32.drun-run.ok
+2 −2 test/bench/ok/heap-64.drun-run.ok
+6 −6 test/bench/ok/palindrome.drun-run.ok
+1 −1 test/bench/ok/region-mem.drun-run.ok
+1 −1 test/bench/ok/region0-mem.drun-run.ok
+4 −4 test/ld/Makefile
+2 −4 test/ld/fun-ptr.c
+23 −8 test/ld/ok/fun-ptr.linked.wat.ok
+5 −3 test/ld/ok/representative.linked.wat.ok
+0 −15 test/run-drun/empty-actor-classical.mo
+1 −9 test/run-drun/empty-actor-enhanced.mo
+0 −41 test/run/float-fmt-eop.mo
+2 −9 test/run/float-fmt.mo
+0 −32 test/run/ok/float-fmt-classical.run-ir.ok
+0 −32 test/run/ok/float-fmt-classical.run-low.ok
+0 −32 test/run/ok/float-fmt-classical.run.ok
+0 −32 test/run/ok/float-fmt-classical.wasm-run.ok
+0 −0 test/run/ok/float-fmt.run-ir.ok
+0 −0 test/run/ok/float-fmt.run-low.ok
+0 −0 test/run/ok/float-fmt.run.ok
+0 −0 test/run/ok/float-fmt.wasm-run.ok

0 comments on commit e96ac21

Please sign in to comment.