Skip to content

v4.0.154

Compare
Choose a tag to compare
@alexrp alexrp released this 04 Aug 12:26
· 195 commits to master since this release
v4.0.154
  • Retargeted MSBuild tasks assembly from net472; net6.0 to netstandard2.0.
  • Bumped default ZigVersion from 0.9.1 to 0.11.0.
  • Bumped TargetSystemVersion for macOS from 10.14 to 11.7 in accordance with Zig support policy.
  • Bumped TargetSystemVersion for Windows from win7 to win10 in accordance with .NET support policy.
  • Changed HostAbi/TargetAbi for macOS from gnu to none.
  • Changed HostArchitecture/TargetArchitecture for 32-bit x86 from i386 to x86.
  • Added linux-arm, osx-arm64, and win-arm64 to the default RuntimeIdentifiers.
  • Changed optimization levels for C/C++ projects to be in line with Zig projects.
    • Configuration=Debug: -Og -> -O0
    • Configuration=Release, ReleaseMode=Fast: -O3 -> -O2
    • Configuration=Release, ReleaseMode=Safe: -O2 -fsanitize=undefined (unchanged)
    • Configuration=Release, ReleaseMode=Small: -Oz -> -Os