diff --git a/CHANGELOG.md b/CHANGELOG.md index 96d1568..7317fd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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). +## [0.4.1] - 2023-11-24 + +### Fixed + +- Added missing export for `findTransactionRequired` + ## [0.4.0] - 2023-11-05 ### Added diff --git a/package.json b/package.json index 7a40e73..e8fde56 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ton/test-utils", - "version": "0.4.0", + "version": "0.4.1", "main": "dist/index.js", "license": "MIT", "description": "Utilities for writing tests for smart contract systems in TON", diff --git a/src/index.ts b/src/index.ts index 70c6d0c..d566c2c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,6 +4,7 @@ export { compareTransaction, flattenTransaction, findTransaction, + findTransactionRequired, filterTransactions, } from './test/transaction';