Skip to content

Commit 506273c

Browse files
committed
[Tolk] Bump version to v1.1
1 parent 4c62653 commit 506273c

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

crypto/smartcont/tolk-stdlib/common.tolk

Lines changed: 1 addition & 1 deletion
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/gas-payments".
4-
tolk 1.0
4+
tolk 1.1
55

66
/**
77
Built-in types.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// A part of standard library for Tolk
2-
tolk 1.0
2+
tolk 1.1
33

44
/**
55
Gas and payment related primitives.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// A part of standard library for Tolk
2-
tolk 1.0
2+
tolk 1.1
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// A part of standard library for Tolk
2-
tolk 1.0
2+
tolk 1.1
33

44
/**
55
Low-level API working with TVM dictionaries.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// A part of standard library for Tolk
2-
tolk 1.0
2+
tolk 1.1
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818

1919
namespace tolk {
2020

21-
constexpr const char* TOLK_VERSION = "1.0.0";
21+
constexpr const char* TOLK_VERSION = "1.1.0";
2222

2323
} // namespace tolk

0 commit comments

Comments
 (0)