diff --git a/dub.selections.json b/dub.selections.json index 81611f3..7a0113b 100644 --- a/dub.selections.json +++ b/dub.selections.json @@ -2,6 +2,6 @@ "fileVersion": 1, "versions": { "stdx-allocator": "2.77.5", - "vibe-d": "0.9.5" + "vibe-d": "0.9.7" } } diff --git a/dub.selections.nix b/dub.selections.nix index 01db3a8..319544f 100644 --- a/dub.selections.nix +++ b/dub.selections.nix @@ -3,13 +3,13 @@ fetch = { type = "git"; url = "https://github.com/vibe-d/vibe.d.git"; - rev = "v0.9.5"; - sha256 = "1cf8psyfxh7053wwcjm3jm9avyph6dkx7c4fahi0gr1lrflpvpcb"; + rev = "v0.9.7"; + sha256 = "1q4yvcaf36lmf29izg01x888v40snpwiph310nrlpr4gyhd834av"; fetchSubmodules = false; - date = "2022-07-18T17:27:21+02:00"; + date = "2023-08-29T13:24:09+02:00"; deepClone = false; leaveDotGit = false; - path = "/nix/store/dx5wdsw6rrwxrhg1vqx1a1p7jq89rz5g-vibe.d"; + path = "/nix/store/7fq089i7zib7m9hxyl75mlfy264d9gnx-vibe.d"; }; } { fetch = { diff --git a/dub2nix.nix b/dub2nix.nix index 436828f..62d3608 100644 --- a/dub2nix.nix +++ b/dub2nix.nix @@ -6,7 +6,7 @@ mkDubDerivation { src = pkgs.lib.cleanSource ./.; # dubJSON = ./dub.json; # selections = ./dub.selections.nix; - version = "0.3.0"; + version = "0.3.1"; # doCheck = true; buildInputs = [ pkgs.makeWrapper pkgs.cacert pkgs.nix-prefetch-git ]; postFixup = '' diff --git a/src/dub2nix.d b/src/dub2nix.d index fd43743..04e5eec 100644 --- a/src/dub2nix.d +++ b/src/dub2nix.d @@ -8,7 +8,7 @@ import vibe.data.json, std.string; import std.exception : enforce; enum mkDubNix = import("./mkDub.nix"); -enum VERSION = "0.3.0"; +enum VERSION = "0.3.1"; enum HEADER = "# This file was generated by https://github.com/lionello/dub2nix v"~VERSION~"\n"; unittest {