Skip to content

Releases: nervosnetwork/ckb-vm

0.19.0

04 Feb 05:45
Compare
Choose a tag to compare

This release contains the following changes:

  • #93 Add step mode for AsmMachine
  • #95 Upgrade toolchain and outdated dependencies

0.18.2

18 Dec 08:40
Compare
Choose a tag to compare

This release contains the following changes:

  • #94 feat: Try scoop instead of chocolatey, besides CI changes, this also updates build configuration to make it compatible with yasm 1.3

0.18.1

30 Nov 07:08
Compare
Choose a tag to compare

This release contains the following changes:

  • #90 perf: Tweak slot calculation algorithm

0.18.0

17 Oct 04:18
Compare
Choose a tag to compare

This release contains the following changes:

  • #88: Expose running methods in SupportMachine trait
  • #89: Implement StdError for Error @brson

0.17.0

25 Sep 06:29
Compare
Choose a tag to compare

This release contains the following changes:

  • #85 criterion updates @u2
  • #87 Return loaded program consumed bytes

0.16.0

10 Sep 07:36
Compare
Choose a tag to compare

This release contains the following changes:

  • #80 Fix ELF parsing panics in AOT mode
  • #81 Upgrade goblin @driftluo
  • #82 Fix FlatMemory overflowing bug
  • #83 Add EBREAK support for debugger integration
  • #84 Add Windows support for assembly interpreter via YASM

0.15.1

27 Jul 06:00
Compare
Choose a tag to compare

This release fixes the invalid ckb-vm-definitions version in 0.15.0

0.15.0

27 Jul 05:41
Compare
Choose a tag to compare

This is an important release. We are adding a brand new AOT mode for executing CKB VM programs with huge speedup.

Specifically, this release contains the following changes:

  • #68 Replace uses of rounddown / roundup with round_page_down / round_page_up @brson
  • #71 Eliminate as much usize as making sense from CKB VM
  • #72 feat: Add new AOT mode to replace experimental JIT mode
  • #74 feat: Do not trigger coverage jobs in PRs
  • #75 test: avoid make-cov run test two times @u2
  • #76 feat: Set codecov coverage target
  • #77 feat: Add benchmarks for ASM & AOT VM
  • #78 fix: Various places where panic might happen in case of malicious data
  • #79 chore: update rust to 1.36.0 @u2

0.14.0

10 Jun 01:27
Compare
Choose a tag to compare

This release contains the following changes:

  • #67 Replace custom power_of_2 function with std @brson
  • #69 Add flag denoting if PC should be updated when loading ELF. Note: this is a breaking change since a public API is changed
  • #70 Add coverage CI job containing full CKB VM test suite