Skip to content

Commit

Permalink
Release 0.2.0 (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
war-in authored Mar 8, 2024
1 parent 5dd95e7 commit 0752d84
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
id: lookupVersion
uses: mikefarah/yq@dd648994340a5d03225d97abf19c9bf1086c3f07
with:
cmd: yq -oy '"v" + .package.version' 'Cargo.toml'
cmd: yq -oy '"v" + .workspace.package.version' 'Cargo.toml'

- name: Print version
id: version
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.0] - 2024-03-08

### Added

- `output_path` argument to pass path to the output file
- `trace_data` library (other tools can use it to integrate with `cairo-profiler`)
- L2 -> L1 messages
- `show_details` flag to show `contract_address` and `function_selector`

### Changed

- `contract_address` and `function_selector` are not displayed by default (use `show_details` flag to see them)

## [0.1.0] - 2024-02-21

#### Added
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ members = [
"crates/cairo-profiler",
]

[workspace.package]
version = "0.2.0"
edition = "2021"


[workspace.dependencies]
prost = "0.12"
Expand Down
4 changes: 2 additions & 2 deletions crates/cairo-profiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cairo-profiler"
version = "0.1.0"
edition = "2021"
version.workspace = true
edition.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion crates/trace-data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trace-data"
version = "0.1.0"
version = "0.2.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down

0 comments on commit 0752d84

Please sign in to comment.