-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #644 from primitivefinance/release-plz/2023-10-24T…
…21-31-20Z chore: release
- Loading branch information
Showing
5 changed files
with
62 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ exclude = ["benches"] | |
# Package configuration | ||
[package] | ||
name = "arbiter" | ||
version = "0.4.4" | ||
version = "0.4.5" | ||
edition = "2021" | ||
authors = ["Waylon Jepsen <[email protected]>", "Colin Roberts <[email protected]>"] | ||
description = "Allowing smart contract developers to do simulation driven development via an EVM emulator" | ||
|
@@ -23,7 +23,7 @@ path = "bin/main.rs" | |
|
||
# Dependencies for the release build | ||
[dependencies] | ||
arbiter-core = { version = "0.6.1", path = "arbiter-core" } | ||
arbiter-core = { version = "0.7.0", path = "arbiter-core" } | ||
|
||
# Command line and config | ||
clap = { version = "=4.4.7", features = ["derive"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.7.0](https://github.com/primitivefinance/arbiter/compare/arbiter-core-v0.6.3...arbiter-core-v0.7.0) - 2023-10-27 | ||
|
||
### Fixed | ||
- fix data output test to rmdir after completion | ||
- fix clippy + fmt | ||
- fix tests | ||
|
||
### Other | ||
- Merge pull request [#656](https://github.com/primitivefinance/arbiter/pull/656) from primitivefinance/colin/fix-event-logger | ||
- rm printlns | ||
- fmt | ||
- create valid json | ||
- Update data_collection.rs | ||
- wip | ||
- push json logs to vec | ||
- it works!!!!!!!!!!!! | ||
- wip | ||
- unsafe transmute | ||
- Update data_collection.rs | ||
- broadcast enum | ||
- create a channel for direct reads | ||
- *(deps)* bump tracing from 0.1.39 to 0.1.40 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "arbiter-core" | ||
version = "0.6.3" | ||
version = "0.7.0" | ||
edition = "2021" | ||
authors = ["Waylon Jepsen <[email protected]>", "Colin Roberts <[email protected]>"] | ||
description = "Allowing smart contract developers to do simulation driven development via an EVM emulator" | ||
|