diff --git a/CHANGELOG.md b/CHANGELOG.md index fb66b70..4769df9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [3.1.0](https://github.com/nix-community/nixago/compare/v3.0.0...v3.1.0) (2022-06-20) + + +### Features + +* locate the request file, if possible ([#30](https://github.com/nix-community/nixago/issues/30)) ([f904f54](https://github.com/nix-community/nixago/commit/f904f54eb5b60414d6411d0d43eb33360b707e88)) + ## [3.0.0](https://github.com/nix-community/nixago/compare/v2.1.0...v3.0.0) (2022-06-17) diff --git a/flake.nix b/flake.nix index 59999f2..17b544a 100644 --- a/flake.nix +++ b/flake.nix @@ -24,7 +24,7 @@ } // (flake-utils.lib.eachDefaultSystem (system: let - version = "3.0.0"; # x-release-please-version + version = "3.1.0"; # x-release-please-version engines = import ./engines { inherit pkgs lib; }; lib = (import ./lib { inherit pkgs lib engines; });