From 9cbfc41b367b7b52fab81c4f1ec559ef9ef89a0c Mon Sep 17 00:00:00 2001 From: Evan Goode Date: Fri, 22 Nov 2024 15:46:56 -0500 Subject: [PATCH] Bump version to 2.1.0 --- build_config.go | 2 +- flake.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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 =