atlas 0.14.1 -> 0.15.0 https://repology.org/project/atlas-database-toolkit/versions attrpath: atlas Checking auto update branch... No auto update branch exists Old version 0.14.1" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, atlas }: buildGoModule rec { pname = "atlas"; version = "0.15.0"; src = fetchFromGitHub { owner = "ariga"; repo = "atlas"; rev = "v${version}"; hash = "sha256-qEui+Y7auNFJwLSUT90jJH7IPgNW06phbJel9y3C1bk="; }; modRoot = "cmd/atlas"; proxyVendor = true; vendorHash = "sha256-BJB+ZwrfZsYlyVX0G3qNQW8KexxMmc1Y9m2TRbOX6Tc="; nativeBuildInputs = [ installShellFiles ]; ldflags = [ "-s" "-w" "-X ariga.io/atlas/cmd/atlas/internal/cmdapi.version=v${version}" ]; subPackages = [ "." ]; postInstall = '' installShellCompletion --cmd atlas \ --bash <($out/bin/atlas completion bash) \ --fish <($out/bin/atlas completion fish) \ --zsh <($out/bin/atlas completion zsh) ''; passthru.tests.version = testers.testVersion { package = atlas; command = "atlas version"; version = "v${version}"; }; meta = with lib; { description = "A modern tool for managing database schemas"; homepage = "https://atlasgo.io/"; changelog = "https://github.com/ariga/atlas/releases/tag/v${version}"; license = licenses.asl20; maintainers = [ maintainers.marsam ]; mainProgram = "atlas"; }; }