Skip to content

Commit

Permalink
Update SDK to v2.0.0-alpha.3 and prepare to release v1.1.3 (#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperl authored Jun 7, 2022
1 parent c775eb0 commit f538f74
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions cmd/jag/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (
)

var (
date = "2022-05-18T12:18:39Z"
version = "v1.1.2"
sdkVersion = "v2.0.0-alpha.2"
date = "2022-06-07T09:30:34Z"
version = "v1.1.3"
sdkVersion = "v2.0.0-alpha.3"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion third_party/toit
Submodule toit updated 58 files
+2 −4 Makefile
+3 −1 README.md
+35 −0 examples/pcnt.toit
+27 −18 lib/ble.toit
+8 −0 lib/core/entry.toit
+5 −4 lib/core/message.toit
+5 −1 lib/monitor.toit
+264 −0 lib/pulse_counter.toit
+70 −7 lib/system/services.toit
+2 −5 src/event_sources/ble_esp32.cc
+2 −2 src/event_sources/ble_esp32.h
+2 −0 src/flags.cc
+3 −0 src/flags.h
+0 −1 src/flash_registry_esp32.cc
+44 −27 src/heap.cc
+24 −18 src/heap.h
+2 −3 src/heap_roots.h
+18 −17 src/interpreter_run.cc
+56 −16 src/linked.h
+0 −221 src/memory.cc
+0 −223 src/memory.h
+0 −10 src/os_darwin.cc
+1 −11 src/os_esp32.cc
+0 −10 src/os_linux.cc
+0 −9 src/os_win.cc
+29 −3 src/primitive.h
+10 −0 src/primitive_core.cc
+0 −15 src/process.cc
+7 −14 src/process.h
+0 −2 src/process_group.h
+1 −1 src/program_heap.h
+5 −3 src/resource.cc
+40 −28 src/resources/ble_esp32.cc
+333 −0 src/resources/pulse_counter_esp32.cc
+11 −3 src/scheduler.cc
+3 −0 src/scheduler.h
+3 −0 src/tags.h
+12 −0 src/third_party/dartino/gc_metadata.cc
+2 −17 src/third_party/dartino/object_memory.cc
+12 −22 src/third_party/dartino/object_memory.h
+9 −4 src/third_party/dartino/object_memory_copying.cc
+15 −25 src/third_party/dartino/object_memory_mark_sweep.cc
+93 −34 src/third_party/dartino/two_space_heap.cc
+12 −24 src/third_party/dartino/two_space_heap.h
+3 −0 src/toit.cc
+1 −0 src/toit_run_image.cc
+8 −1 src/top.cc
+281 −286 src/utils.cc
+12 −0 src/utils.h
+0 −2 src/vm.cc
+0 −2 src/vm.h
+325 −0 tests/esp32/pulse_counter.toit
+2 −4 tests/fail.cmake
+65 −5 tests/max_heap_size_test.toit
+2 −2 tests/negative/gold/illegal_system_call_test.gold
+114 −0 tests/services_notify_test.toit
+2 −2 tests/tls_test_slow.toit
+1 −1 toolchains/host.cmake

0 comments on commit f538f74

Please sign in to comment.