Skip to content

Commit 7bdcb3e

Browse files
committed
[Tolk] Bump version to v0.9
1 parent 526c18f commit 7bdcb3e

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

crypto/smartcont/tolk-stdlib/common.tolk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Standard library for Tolk (LGPL licence).
22
// It contains common functions that are available out of the box, the user doesn't have to import anything.
33
// More specific functions are required to be imported explicitly, like "@stdlib/tvm-dicts".
4-
tolk 0.8
4+
tolk 0.9
55

66
/**
77
Tuple manipulation primitives.

crypto/smartcont/tolk-stdlib/gas-payments.tolk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// A part of standard library for Tolk
2-
tolk 0.8
2+
tolk 0.9
33

44
/**
55
Gas and payment related primitives.

crypto/smartcont/tolk-stdlib/lisp-lists.tolk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// A part of standard library for Tolk
2-
tolk 0.8
2+
tolk 0.9
33

44
/**
55
Lisp-style lists are nested 2-elements tuples: `(1, (2, (3, null)))` represents list `[1, 2, 3]`.

crypto/smartcont/tolk-stdlib/tvm-dicts.tolk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// A part of standard library for Tolk
2-
tolk 0.8
2+
tolk 0.9
33

44
/**
55
Dictionaries are represented as `cell` data type (cells can store anything, dicts in particular).

crypto/smartcont/tolk-stdlib/tvm-lowlevel.tolk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// A part of standard library for Tolk
2-
tolk 0.8
2+
tolk 0.9
33

44
/// Usually `c3` has a continuation initialized by the whole code of the contract. It is used for function calls.
55
/// The primitive returns the current value of `c3`.

tolk/tolk-version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818

1919
namespace tolk {
2020

21-
constexpr const char* TOLK_VERSION = "0.8.0";
21+
constexpr const char* TOLK_VERSION = "0.9.0";
2222

2323
} // namespace tolk

0 commit comments

Comments
 (0)