Skip to content

Commit

Permalink
Version 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
manveru committed Sep 4, 2019
1 parent 063c06a commit 9143182
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
pkgs ? (import <nixpkgs> {}),
ruby ? pkgs.ruby_2_4_1,
ruby ? pkgs.ruby_2_6,
bundler ? (pkgs.bundler.override { inherit ruby; }),
nix ? pkgs.nix,
nix-prefetch-git ? pkgs.nix-prefetch-git,
}:
pkgs.stdenv.mkDerivation rec {
version = "2.4.1";
version = "2.5.0";
name = "bundix";
src = ./.;
phases = "installPhase";
Expand Down
2 changes: 1 addition & 1 deletion lib/bundix.rb
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def groups(spec, dep_cache)
"x64_mingw" => [{engine: "mingw"}],
}.each do |name, list|
PLATFORM_MAPPING[name] = list
%w(1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5).each do |version|
%w(1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5 2.6).each do |version|
PLATFORM_MAPPING["#{name}_#{version.sub(/[.]/,'')}"] = list.map do |platform|
platform.merge(:version => version)
end
Expand Down
2 changes: 1 addition & 1 deletion lib/bundix/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class Bundix
VERSION = '2.4.3'
VERSION = '2.5.0'
end

0 comments on commit 9143182

Please sign in to comment.