diff --git a/build_config.go b/build_config.go index 6b01e27..8c9692b 100644 --- a/build_config.go +++ b/build_config.go @@ -2,7 +2,7 @@ package main // Build constants -const VERSION = "2.0.2" +const VERSION = "2.1.0" const REPOSITORY_URL = "https://github.com/unmojang/drasl" diff --git a/flake.nix b/flake.nix index 00e8e5d..8687533 100644 --- a/flake.nix +++ b/flake.nix @@ -14,14 +14,14 @@ nixpkgs, buildNodeModules, }: let - version = "2.0.2"; + version = "2.1.0"; supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"]; # Helper function to generate an attrset '{ x86_64-linux = f "x86_64-linux"; ... }'. forAllSystems = nixpkgs.lib.genAttrs supportedSystems; - overlays = [ ]; + overlays = []; nixpkgsFor = forAllSystems (system: import nixpkgs {inherit system overlays;}); nixpkgsCross =