From 7ed5e05dc0fcbc880f76fe326ea03aae69a3d966 Mon Sep 17 00:00:00 2001 From: Anton Trunov Date: Thu, 29 Feb 2024 20:16:21 +0400 Subject: [PATCH] chore[release]: Tact v1.2.0 (#159) --- CHANGELOG.md | 8 ++++++++ bin/tact | 2 +- package.json | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cb7fcffd..7fb250b6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Added + +### Changed + +### Fixed + +## [1.2.0] - 2024-02-29 + ### Added - Augmented assignment operators (`+=`, `-=`, `*=`, `/=` and `%=`): PR [#87](https://github.com/tact-lang/tact/pull/87) - Binary and octal literals with underscores as numerical separators: PR [#99](https://github.com/tact-lang/tact/pull/99) diff --git a/bin/tact b/bin/tact index 5b1a47ac0..717a89d50 100755 --- a/bin/tact +++ b/bin/tact @@ -10,7 +10,7 @@ const args = arg({ }); if (args['--version']) { - console.log('1.1.5'); + console.log('1.2.0'); return; } diff --git a/package.json b/package.json index ac8b0d537..0418f66c1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tact-lang/compiler", - "version": "1.1.5", + "version": "1.2.0", "repository": "https://github.com/tact-lang/tact.git", "homepage": "https://tact-lang.org", "description": "Tact is a next-gen smart contract language for TON",