Skip to content

Releases: MystenLabs/sui

devnet-0.18.0

08 Dec 18:22
Compare
Choose a tag to compare

devnet-0.17.0

01 Dec 17:11
Compare
Choose a tag to compare

devnet-0.16.0

17 Nov 19:18
Compare
Choose a tag to compare

devnet-0.15.2

15 Nov 00:18
4409cd3
Compare
Choose a tag to compare

What's Changed

Full Changelog: devnet-0.15.1...devnet-0.15.2

devnet-0.15.1

08 Nov 16:41
Compare
Choose a tag to compare

devnet-0.14.1

04 Nov 17:54
Compare
Choose a tag to compare
devnet-0.14.1 Pre-release
Pre-release

devnet-0.14.0

02 Nov 16:51
2a9ad74
Compare
Choose a tag to compare

New u16, u32, u256 types in Sui-Move

  • In addition to u8, u64, u128, Sui-Move now supports 3 additional unsigned integer types

    • u16: for 16 bit unsigned integers, example 12356u16
    • u32: for 32 bit unsigned integers, example 12345678u32
    • u256: for 256 bit unsigned integers, example 1234567890129463492427367372u256

    VSCode Move-analyzer, and Emacs Major Mode have been updated to support these types, so we recommend updating your editor.
    Update to latest Sui binaries to avoid compatibility issues.

if you run a fullnode using docker make sure to reset the db/volume using:
docker compose down -v
and if building and running from source then remove the fullnode db directory:
rm -rf /data/authorities_db/full_node_db (or whatever you have configured)

Shipping commits: devnet-0.13.2...devnet-0.14.0

devnet-0.13.2

29 Oct 17:35
Compare
Choose a tag to compare
0.13.2 devnet release

Sui v0.13.0 devnet release

27 Oct 17:25
8be7f92
Compare
Choose a tag to compare

Sui v0.12.2 devnet release

21 Oct 00:09
fd65bbe
Compare
Choose a tag to compare

Flat VM Fees: Updated

In 0.12.0, we rolled out Flat VM Fees, but quickly got feedback that this was too restrictive for some users who needed more room for computation. If we increased the gas limit for these users, we would inherently tax other users with lesser needs.
So instead we have decided to revert to fine-grained charging per instruction while we improve the gas logic to be fair, predictable, and frictionless.
Please keep the feedback coming.

See Full Changelog: https://github.com/MystenLabs/sui/commits/devnet-0.12.2