Skip to content

Commit

Permalink
Update default maturin version to v0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Jul 20, 2021
1 parent 88d9d95 commit 5874877
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<string, string> = {
x64: 'x86_64-unknown-linux-gnu',
Expand Down

0 comments on commit 5874877

Please sign in to comment.