Bump version to 2.1.0

This commit is contained in:
Evan Goode 2024-11-22 15:46:56 -05:00
parent 73aeed39cb
commit 9cbfc41b36
2 changed files with 3 additions and 3 deletions

View File

@ -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"

View File

@ -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 =