Skip to content

Commit 184f892

Browse files
authored
chore(version): fix default versions (#29)
1 parent fb707e4 commit 184f892

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@initia/builder.js",
3-
"version": "0.2.10",
3+
"version": "0.2.11",
44
"description": "The JavaScript Move Builder for Initia",
55
"license": "MIT",
66
"author": "Initia Foundation",

src/builder.ts

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

1919
type ModuleName = string
2020

21-
const DEFAULT_BYTECODE_VERSION = 6
21+
const DEFAULT_BYTECODE_VERSION = 7
2222
const DEFAULT_LANGUAGE_VERSION = '2'
2323
const DEFAULT_COMPILER_VERSION = '2'
2424
export class MoveBuilder {

test/build.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ describe('build move package', () => {
2525

2626
it('get default values of move builder', () => {
2727
expect(MoveBuilder.getDefaultVersions()).toEqual({
28-
bytecodeVersion: 6,
28+
bytecodeVersion: 7,
2929
compilerVersion: '2',
3030
languageVersion: '2',
3131
})

0 commit comments

Comments
 (0)