Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
Merge pull request #126 from dfinity/bogwar/release0.18.9
Browse files Browse the repository at this point in the history
Bogwar/release0.18.9
  • Loading branch information
bogwar authored Dec 6, 2022
2 parents e8e3de7 + 73903a8 commit 03620cc
Show file tree
Hide file tree
Showing 4 changed files with 617 additions and 229 deletions.
6 changes: 6 additions & 0 deletions spec/changelog.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
[#changelog]
== Changelog

[#0_18_9]
=== 0.18.9 (2022-12-06)
* Global timers
* Canister version
* Clarifications for HTTP requests & Bitcoin integration costs

[#0_18_8]
=== 0.18.8 (2022-11-09)
* Updated HTTP request API
Expand Down
16 changes: 9 additions & 7 deletions spec/ic0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@ ic0.canister_self_copy : (dst : i32, offset : i32, size : i32) -> (); // *
ic0.canister_cycle_balance : () -> i64; // *
ic0.canister_cycle_balance128 : (dst : i32) -> (); // *
ic0.canister_status : () -> i32; // *
ic0.canister_version : () -> i64; // *

ic0.msg_method_name_size : () -> i32; // F
ic0.msg_method_name_copy : (dst : i32, offset : i32, size : i32) -> (); // F
ic0.accept_message : () -> (); // F

ic0.call_new : // U Ry Rt H
ic0.call_new : // U Ry Rt T
( callee_src : i32,
callee_size : i32,
name_src : i32,
Expand All @@ -38,11 +39,11 @@ ic0.call_new : // U
reject_fun : i32,
reject_env : i32
) -> ();
ic0.call_on_cleanup : (fun : i32, env : i32) -> (); // U Ry Rt H
ic0.call_data_append : (src : i32, size : i32) -> (); // U Ry Rt H
ic0.call_cycles_add : (amount : i64) -> (); // U Ry Rt H
ic0.call_cycles_add128 : (amount_high : i64, amount_low: i64) -> (); // U Ry Rt H
ic0.call_perform : () -> ( err_code : i32 ); // U Ry Rt H
ic0.call_on_cleanup : (fun : i32, env : i32) -> (); // U Ry Rt T
ic0.call_data_append : (src : i32, size : i32) -> (); // U Ry Rt T
ic0.call_cycles_add : (amount : i64) -> (); // U Ry Rt T
ic0.call_cycles_add128 : (amount_high : i64, amount_low: i64) -> (); // U Ry Rt T
ic0.call_perform : () -> ( err_code : i32 ); // U Ry Rt T

ic0.stable_size : () -> (page_count : i32); // *
ic0.stable_grow : (new_pages : i32) -> (old_page_count : i32); // *
Expand All @@ -53,12 +54,13 @@ ic0.stable64_grow : (new_pages : i64) -> (old_page_count : i64); // *
ic0.stable64_write : (offset : i64, src : i64, size : i64) -> (); // *
ic0.stable64_read : (dst : i64, offset : i64, size : i64) -> (); // *

ic0.certified_data_set : (src: i32, size: i32) -> (); // I G U Ry Rt H
ic0.certified_data_set : (src: i32, size: i32) -> (); // I G U Ry Rt T
ic0.data_certificate_present : () -> i32; // *
ic0.data_certificate_size : () -> i32; // *
ic0.data_certificate_copy : (dst: i32, offset: i32, size: i32) -> (); // *

ic0.time : () -> (timestamp : i64); // *
ic0.global_timer_set : (timestamp : i64) -> i64; // I U Ry Rt C T
ic0.performance_counter : (counter_type : i32) -> (counter : i64); // * s

ic0.debug_print : (src : i32, size : i32) -> (); // * s
Expand Down
Loading

0 comments on commit 03620cc

Please sign in to comment.