From 47803259df0a1286efc8beca4890a615ea226a57 Mon Sep 17 00:00:00 2001 From: Anton Trunov Date: Mon, 25 Mar 2024 21:22:25 +0400 Subject: [PATCH] doc: update CHANGELOG with new reserve mode constants and a couple minor enhancements --- CHANGELOG.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9ba8caa2..96296a660 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,13 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added - -- `log2` and `log` math functions in stdlib: PR [#166](https://github.com/tact-lang/tact/pull/166) +- `log2` and `log` math functions in `@stdlib/math`: PR [#166](https://github.com/tact-lang/tact/pull/166) +- Reserve mode constants in `@stdlib/reserve`, namely `ReserveExact`, `ReserveAllExcept`, `ReserveAtMost`, `ReserveAddOriginalBalance`, `ReserveInvertSign`, `ReserveBounceIfActionFail`: PR [#173](https://github.com/tact-lang/tact/pull/173) ### Changed - Update the `dump` function to handle addresses: PR [#175](https://github.com/tact-lang/tact/pull/175) - -- The implicit empty init function is now present by default in the contract if not declared +- The implicit empty `init` function is now present by default in the contract if not declared: PR [#167](https://github.com/tact-lang/tact/pull/167) ### Fixed