Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 852 Bytes

CHANGELOG.md

File metadata and controls

59 lines (39 loc) · 852 Bytes

CHANGELOG

How to release

cargo publish --dry-run
cargo publish

How to check coverage

# install llvm-cov
cargo +stable install cargo-llvm-cov --locked

# run test with coverage
cargo llvm-cov --html

# open coverage report
open target/llvm-cov/html/index.html

How to run test

cargo test

# show the output of the test
cargo test -- --show-output

# run a specific test
cargo test <test_name>

2024-02-13

  • better separation of options - VerbosityFields and OptionsFields
  • Do . by default instead of doing nothing
  • Bump to version 1.0.6

2024-01-25

  • Add tests
  • Use as_encoded_bytes instead of as_bytes
  • Bump to version 1.0.5

2024-01-20

  • Create a lib.rs file
  • Add tests
  • Bump to version 1.0.4

2024-01-14

  • Version 1.0.3

2024-01-01

  • Creation of the package