lol

ponyc: 0.49.0 -> 0.50.0

Changelog:

0.49.1:

* Ban Unstable Variables

0.50.0:

* Fix crash with exhaustive match on Generics.
* Fix parameter names not being checked in all circumstances.
* Fix compiler crash to HeapToStack compiler pass.
* Strengthen the ordering for some atomic operations.
* Allow override of return types for FFI functions.
* Don't allow FFI calls in default methods or behaviours.

+2 -2
+2 -2
pkgs/development/compilers/ponyc/default.nix
··· 3 3 4 4 stdenv.mkDerivation (rec { 5 5 pname = "ponyc"; 6 - version = "0.49.0"; 6 + version = "0.50.0"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "ponylang"; 10 10 repo = pname; 11 11 rev = version; 12 - sha256 = "sha256-WS3/POC+2vdx6bA8314sjkdWCIWGu9lJG4kbKMWfnX8="; 12 + sha256 = "sha256-FnzlFTiJrqoUfnys+q9is6OH9yit5ExDiRszQ679QbY="; 13 13 14 14 fetchSubmodules = true; 15 15 };