From 58748770049208c74603a3386ef3c238a9c2cee0 Mon Sep 17 00:00:00 2001 From: messense Date: Tue, 20 Jul 2021 21:00:45 +0800 Subject: [PATCH] Update default maturin version to v0.11.2 --- dist/index.js | 2 +- src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 28a0cb0..a3a2dae 100644 --- a/dist/index.js +++ b/dist/index.js @@ -5226,7 +5226,7 @@ const exec_exec = async (command, args = [], silent) => { const IS_MACOS = process.platform === 'darwin'; const IS_WINDOWS = process.platform === 'win32'; const IS_LINUX = process.platform === 'linux'; -const DEFAULT_MATURIN_VERSION = 'v0.11.1'; +const DEFAULT_MATURIN_VERSION = 'v0.11.2'; const DEFAULT_TARGET = { x64: 'x86_64-unknown-linux-gnu', arm64: 'aarch64-unknown-linux-gnu' diff --git a/src/index.ts b/src/index.ts index 3c1a925..9db0aee 100644 --- a/src/index.ts +++ b/src/index.ts @@ -12,7 +12,7 @@ import * as mexec from './exec' const IS_MACOS = process.platform === 'darwin' const IS_WINDOWS = process.platform === 'win32' const IS_LINUX = process.platform === 'linux' -const DEFAULT_MATURIN_VERSION = 'v0.11.1' +const DEFAULT_MATURIN_VERSION = 'v0.11.2' const DEFAULT_TARGET: Record = { x64: 'x86_64-unknown-linux-gnu',