Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Security

## [0.2.1] - 2023-01-25

### Fixed

- Package build: npm build was not being called before publish

## [0.2.0] - 2023-01-18

### Added
Expand Down Expand Up @@ -49,7 +55,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Solidity instrumentation
- Solidity specific search criteria (i.e., probe coverage)

[unreleased]: https://github.com/syntest-framework/syntest-solidity/compare/v0.2.0...HEAD
[unreleased]: https://github.com/syntest-framework/syntest-solidity/compare/v0.2.1...HEAD
[0.2.1]: https://github.com/syntest-framework/syntest-solidity/releases/tag/v0.2.0...v0.2.1
[0.2.0]: https://github.com/syntest-framework/syntest-solidity/releases/tag/v0.1.2...v0.2.0
[0.1.2]: https://github.com/syntest-framework/syntest-solidity/releases/tag/v0.1.1...v0.1.2
[0.1.1]: https://github.com/syntest-framework/syntest-solidity/releases/tag/v0.1.0...v0.1.1
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syntest/solidity",
"version": "0.2.0",
"version": "0.2.1",
"description": "SynTest Solidity is a tool for automatically generating test cases for the Solidity platform",
"keywords": [
"syntest",
Expand Down Expand Up @@ -41,7 +41,7 @@
"format:check": "prettier --config .prettierrc.json --ignore-path .prettierignore --check .",
"lint": "eslint --config .eslintrc.json --ignore-path .eslintignore .",
"lint:fix": "eslint --config .eslintrc.json --ignore-path .eslintignore . --fix",
"prepare": "husky install",
"prepare": "npm run build && husky install",
"run": "truffle run syntest-solidity",
"test": "mocha --config .mocharc.json",
"test:coverage": "nyc mocha --config .mocharc.json",
Expand Down