Skip to content

Commit

Permalink
chore: update tact
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-trunov authored Mar 13, 2024
1 parent c499532 commit 2e4438f
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 10 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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).

## [Unreleased]

### Changed

- Changed `@tact-lang/compiler` dependency to be `^1.2.0` instead of `^1.1.5`
- Updated the Tact counter template to use the new `+=` operator from Tact v1.2.0

## [0.17.0] - 2024-03-01

This release contains a breaking change.
Expand Down Expand Up @@ -237,4 +244,4 @@ This release contains a breaking change.

### Fixed

- File selection (compilation files in `build` and scripts in `run`) now accepts CLI argument hints in any case
- File selection (compilation files in `build` and scripts in `run`) now accepts CLI argument hints in any case
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"dependencies": {
"@orbs-network/ton-access": "^2.3.3",
"@tact-lang/compiler": "^1.1.5",
"@tact-lang/compiler": "^1.2.0",
"@ton-community/func-js": "^0.6.3",
"@tonconnect/sdk": "^2.1.3",
"arg": "^5.0.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ contract {{name}} with Deployable {
}

receive(msg: Add) {
self.counter = (self.counter + msg.amount);
self.counter += msg.amount;
}

get fun counter(): Int {
Expand Down
21 changes: 14 additions & 7 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@ __metadata:
languageName: node
linkType: hard

"@tact-lang/compiler@npm:^1.1.5":
version: 1.1.5
resolution: "@tact-lang/compiler@npm:1.1.5"
"@tact-lang/compiler@npm:^1.2.0":
version: 1.2.0
resolution: "@tact-lang/compiler@npm:1.2.0"
dependencies:
"@ipld/dag-pb": 2.1.18
"@tact-lang/opcode": ^0.0.14
Expand All @@ -171,10 +171,10 @@ __metadata:
path-normalize: ^6.0.10
prando: ^6.0.1
qs: ^6.11.0
zod: ^3.20.2
zod: ^3.22.4
bin:
tact: bin/tact
checksum: 00950d5b760df59b4e437aa0987eb0e864a6d62d270ced6e34c10834577802a92fc1fe03d081e7b34482d91448dcd991d90a90f43ea962545676dd62f4e6edea
checksum: 8e9a55883c9550ba0bf2585c32e1da0e5f9c1f9947a31cd4d4cbf49df4980e6fbb13ed21469fba6ea6f895ab03d86dcec1ee73a8a9a303a395c2185b927e4d5f
languageName: node
linkType: hard

Expand Down Expand Up @@ -212,7 +212,7 @@ __metadata:
resolution: "@ton/blueprint@workspace:."
dependencies:
"@orbs-network/ton-access": ^2.3.3
"@tact-lang/compiler": ^1.1.5
"@tact-lang/compiler": ^1.2.0
"@ton-community/func-js": ^0.6.3
"@ton/core": ^0.56.0
"@ton/crypto": ^3.2.0
Expand Down Expand Up @@ -1888,9 +1888,16 @@ __metadata:
languageName: node
linkType: hard

"zod@npm:^3.20.2, zod@npm:^3.21.4":
"zod@npm:^3.21.4":
version: 3.21.4
resolution: "zod@npm:3.21.4"
checksum: f185ba87342ff16f7a06686767c2b2a7af41110c7edf7c1974095d8db7a73792696bcb4a00853de0d2edeb34a5b2ea6a55871bc864227dace682a0a28de33e1f
languageName: node
linkType: hard

"zod@npm:^3.22.4":
version: 3.22.4
resolution: "zod@npm:3.22.4"
checksum: 80bfd7f8039b24fddeb0718a2ec7c02aa9856e4838d6aa4864335a047b6b37a3273b191ef335bf0b2002e5c514ef261ffcda5a589fb084a48c336ffc4cdbab7f
languageName: node
linkType: hard

0 comments on commit 2e4438f

Please sign in to comment.