Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@initia/builder.js",
"version": "0.2.10",
"version": "0.2.11",
"description": "The JavaScript Move Builder for Initia",
"license": "MIT",
"author": "Initia Foundation",
Expand Down
2 changes: 1 addition & 1 deletion src/builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {

type ModuleName = string

const DEFAULT_BYTECODE_VERSION = 6
const DEFAULT_BYTECODE_VERSION = 7
const DEFAULT_LANGUAGE_VERSION = '2'
const DEFAULT_COMPILER_VERSION = '2'
export class MoveBuilder {
Expand Down
2 changes: 1 addition & 1 deletion test/build.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ describe('build move package', () => {

it('get default values of move builder', () => {
expect(MoveBuilder.getDefaultVersions()).toEqual({
bytecodeVersion: 6,
bytecodeVersion: 7,
compilerVersion: '2',
languageVersion: '2',
})
Expand Down