Skip to content

Releases: rooch-network/rooch

v0.4.2

21 May 04:11
31b2099
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.4.1...v0.4.2

v0.4.1

18 May 13:19
3ea59eb
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.4...v0.4.1

v0.4

17 May 19:48
6e4a1d6
Compare
Choose a tag to compare

What's Changed

Read more

v0.4-alpha.3

16 May 17:16
ea447ce
Compare
Choose a tag to compare
v0.4-alpha.3 Pre-release
Pre-release

v0.4-alpha.3

v0.4-alpha.2

16 May 09:17
9a5c642
Compare
Choose a tag to compare
v0.4-alpha.2 Pre-release
Pre-release

v0.4-alpha.2

v0.4-alpha

15 May 14:02
3abd787
Compare
Choose a tag to compare
v0.4-alpha Pre-release
Pre-release

Draft v0.4-alpha

v0.3

02 Feb 00:52
c68a7ff
Compare
Choose a tag to compare

What's Changed

Read more

v0.2.2

17 Nov 05:55
7f1d041
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.2.1...v0.2.2

v0.2.1

19 Oct 05:48
4346ced
Compare
Choose a tag to compare

What's Changed

Read more

Release Rooch v0.1 Sprouting milestone

09 Jul 15:33
e00d022
Compare
Choose a tag to compare

Rooch v0.1 Release, Completing "Sprouting" Milestone is the second milestone on the path to Rooch mainnet.

The objective of the "Sprouting" milestone is to release the first preview version of the Rooch Container, providing essential developer tools for developers to build applications on the Rooch platform.

Release blog: https://rooch.network/blog/release-230717
Milestone: https://github.com/rooch-network/rooch/milestone/1

What's Changed

  • config ci by @jolestar in #5
  • [statedb] Define StateDB and Rush the MoveVM by @jolestar in #4
  • Integration-test-runner by @jolestar in #6
  • rename mpm and moveos-stdlib to mos and mos-stdlib by @jolestar in #7
  • MosFramework by @jolestar in #8
  • [mos_stdlib] Implement type_info and table module by @jolestar in #17
  • Add bcs deserialization by @pause125 in #23
  • Add any, copyable_any modules by @pause125 in #24
  • Add github action ci with cargo fmt, clippy, test by @lshoo in #25
  • [docs] Add dev install shell & docs about contributions and pull requests by @lshoo in #30
  • [DevOps] Switch ci yaml file from docs/contributions to main branch by @lshoo in #33
  • [test_runner] Fix test runner and bcd argument bugs by @jolestar in #26
  • [framework] A draft implemention of Object Move by @jolestar in #28
  • Prepare rename project to rooch by @jolestar in #35
  • [moveos] Rename mos to moveos, mos-framework to rooch-framework by @jolestar in #42
  • [Docs] Update moveos to rooch in contributings.md and rust.yml by @lshoo in #44
  • [moveos-server] MoveOS server as a standalone service by @lshoo in #49
  • implement of basic account by @baichuan3 in #50
  • [moveos] Introduce any_table by @jolestar in #56
  • [object] A draft implementation of box style object by @jolestar in #48
  • [object] Fix named table id bug and enable more test by @jolestar in #59
  • Add MoveOSServer and some basic CLI. by @pause125 in #60
  • Optimized the ConfigReadError message by @wow-sven in #76
  • implement several account api and cli by @baichuan3 in #68
  • add move counter example by @wow-sven in #73
  • [docs] Add document about storage abstraction by @jolestar in #70
  • [docs] Update svg background color by @jolestar in #86
  • [smt] Merge smt to a sub crate by @jolestar in #87
  • rooch move test support MoveOS runtime by @pause125 in #97
  • [types] Define rooch-types and use H256 to replace HashValue by @jolestar in #98
  • [types] Define Address types and Authenticator by @jolestar in #101
  • Refactor framework by using new storage context instruction by @baichuan3 in #102
  • Feature/account by @wow-sven in #103
  • fix account create..., add account list、import, change AccountAddress to RoochAddress by @wow-sven in #109
  • [types&framework] Fix address serialize bug and object_storage bug by @jolestar in #114
  • Added abstract interface for sequencer. by @steelgeek091 in #104
  • fix #119 by @wow-sven in #120
  • Feature/named addresses by @wow-sven in #122
  • Feature/account by @wow-sven in #123
  • fix dependency order when package publish by @baichuan3 in #115
  • Support CLI integration test by @pause125 in #129
  • [ci] Try to fix CI by @jolestar in #131
  • Rename moveos server by @jolestar in #133
  • local check and test before create PR by @wow-sven in #137
  • [types] use RoochTransaction in cli and refactor MoveOSTransaction by @jolestar in #135
  • Integration fix by @pause125 in #139
  • [moveos] Refactor Authenticator and define account:validate function by @jolestar in #143
  • Implement DA client interface & Fix CI failure by @steelgeek091 in #136
  • provides a module initialization method by @baichuan3 in #142
  • optimize cli structure by @wow-sven in #144
  • [framework] Define address_mapping and return rooch address when transaction validate by @jolestar in #149
  • Refactor CLI output types by @pause125 in #153
  • [transaction-validate] Refactor transaction validate and transaction construct flow by @jolestar in #154
  • Feature/test by @wow-sven in #150
  • [rooch-server] Refactor rooch-server, define rooch executor sequencer by @jolestar in #158
  • Optimize CLI output and integration test by @pause125 in #159
  • [Proposer] Define Proposer Basic API and Data Struct by @jolestar in #163
  • Wrap state to a box struct for save TypeTag of state and refactor the RawTable by @jolestar in #168
  • Implement event memory store and define event data structure by @baichuan3 in #170
  • Private generics attribute and other extended checks by @steelgeek091 in #172
  • [rpc] Extract RpcService and Define RoochAPI,EthAPI,WalletAPI by @jolestar in #174
  • Introduce fuzzing proptest for test struct serialize and deserialize by @pause125 in #164
  • [rpc] Remove JsonResponse by @jolestar in #177
  • #155 by @wow-sven in #178
  • Create a code repository 'moveos/moveos-verifier' and use the verifier in framework building and integration testing. by @steelgeek091 in #179
  • Add the type_info.spec.move file to solve the problem of the missing spec_is_struct function. by @steelgeek091 in #183
  • [rpc] Introduce jsonrpc ViewType and refactor rpc types by @jolestar in #180
  • fix cli by @pause125 in #185
  • Unified crypto lib && Implement transaction signature verification by @wow-sven in #187
  • Implement the parameter and return value checking for the entry function. by @steelgeek091 in #196
  • implements native event, event filter and event RPC API by @baichuan3 in #197
  • use default active address as sender-account by @pause125 in #200
  • [rooch-server] mock eth compatible rpc by @yubing744 in #201
  • [rpc] AccessPath and State API by @jolestar in #205
  • Fix error message printing when checking private_generics. by @steelgeek091 in #208
  • use self hosted runner by @yourmoonlight in #207
  • self host the CI node by @yourmoonlight in #219
  • Refactor the configuration and cli by @wow-sven in #220
  • [rpc] Optimize the JSONRPC output for better readability by @jolestar in #221
  • Restoring object, resources location by @wow-sven in #224
  • Check function parameters before executing the function and script. by @steelgeek091 in #223
  • Fix in the entry function verifier. by @steelgeek091 in #225
  • refactor event storage and event handle base on object id by @baichuan3 in #222
  • [rpc] Refactor the execute_view_function return value and support string key in Table AccessPath by @jolestar in https://gith...
Read more