@ton/blueprint 0.17.0 → 0.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.18.0] - 2024-03-13
9
+
10
+ ### Changed
11
+
12
+ - Changed `@tact-lang/compiler` dependency to be `^1.2.0` instead of `^1.1.5`
13
+ - Updated the Tact counter template to use the new `+=` operator from Tact v1.2.0
14
+
8
15
  ## [0.17.0] - 2024-03-01
9
16
 
10
17
  This release contains a breaking change.
@@ -237,4 +244,4 @@ This release contains a breaking change.
237
244
 
238
245
  ### Fixed
239
246
 
240
- - File selection (compilation files in `build` and scripts in `run`) now accepts CLI argument hints in any case
247
+ - File selection (compilation files in `build` and scripts in `run`) now accepts CLI argument hints in any case
@@ -16,7 +16,7 @@ contract {{name}} with Deployable {
16
16
  }
17
17
 
18
18
  receive(msg: Add) {
19
- self.counter = (self.counter + msg.amount);
19
+ self.counter += msg.amount;
20
20
  }
21
21
 
22
22
  get fun counter(): Int {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ton/blueprint",
3
- "version": "0.17.0",
3
+ "version": "0.18.0",
4
4
  "description": "Framework for development of TON smart contracts",
5
5
  "main": "dist/index.js",
6
6
  "bin": "./dist/cli/cli.js",
@@ -35,7 +35,7 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "@orbs-network/ton-access": "^2.3.3",
38
- "@tact-lang/compiler": "^1.1.5",
38
+ "@tact-lang/compiler": "^1.2.0",
39
39
  "@ton-community/func-js": "^0.6.3",
40
40
  "@tonconnect/sdk": "^2.1.3",
41
41
  "arg": "^5.0.2",