File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 11# @graphprotocol/graph-cli
22
3+ ## 0.91.1
4+
5+ ### Patch Changes
6+
7+ - [ #1783 ] ( https://github.com/graphprotocol/graph-tooling/pull/1783 )
8+ [ ` ea1d948 ` ] ( https://github.com/graphprotocol/graph-tooling/commit/ea1d94863783e19a379ce6d545d5f8523d8bf9e8 )
9+ Thanks [ @YaroShkvorets ] ( https://github.com/YaroShkvorets ) ! - Fix bug with network selection
10+
311## 0.91.0
412
513### Minor Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " @graphprotocol/graph-cli" ,
3- "version" : " 0.91.0" ,
43 "type" : " module" ,
4+ "version" : " 0.91.1" ,
55 "description" : " CLI for building for and deploying to The Graph" ,
66 "license" : " (Apache-2.0 OR MIT)" ,
77 "engines" : {
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ async function getPlatform(
180180 const type = os . type ( ) ;
181181 const arch = os . arch ( ) ;
182182 const cpuCore = os . cpus ( ) [ 0 ] ;
183- const isAppleSilicon = arch === 'arm64' && / A p p l e ( M 1 | M 2 | M 3 | p r o c e s s o r ) / . test ( cpuCore . model ) ;
183+ const isAppleSilicon = arch === 'arm64' && / A p p l e ( M 1 | M 2 | M 3 | M 4 | p r o c e s s o r ) / . test ( cpuCore . model ) ;
184184 const linuxInfo = type === 'Linux' ? await getLinuxInfo . bind ( this ) ( ) : { } ;
185185 const linuxDistro = linuxInfo . name ;
186186 const release = linuxInfo . version || os . release ( ) ;
You can’t perform that action at this time.
0 commit comments