From 53eff20712c0d8f037d56be30344c6245138a8c6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 24 Apr 2023 00:56:29 +0000 Subject: [PATCH] chore(master): release 3.1.0 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ flake.nix | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb66b70..9121f8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## [3.1.0](https://github.com/nix-community/nixago/compare/v3.0.0...v3.1.0) (2023-04-24) + + +### Features + +* add colors to nixago logs ([#48](https://github.com/nix-community/nixago/issues/48)) ([8c1f9e5](https://github.com/nix-community/nixago/commit/8c1f9e5f1578d4b2ea989f618588d62a335083c3)) +* allow extra attributes that are transparently passed through ([#32](https://github.com/nix-community/nixago/issues/32)) ([59843d3](https://github.com/nix-community/nixago/commit/59843d34e6f369b65589dda00d2efe5d5164ce39)) +* automatically add linked files to gitignore ([#43](https://github.com/nix-community/nixago/issues/43)) ([e157f2e](https://github.com/nix-community/nixago/commit/e157f2e78e0fcc00c3446c71b90944cdb2677316)), closes [#27](https://github.com/nix-community/nixago/issues/27) +* factorize shell scripts so that they can be composed more freely ([#40](https://github.com/nix-community/nixago/issues/40)) ([dd3c333](https://github.com/nix-community/nixago/commit/dd3c333e5cb6a81feb902e9eaa3cdbc2dc6da2c4)) +* locate the request file, if possible ([#30](https://github.com/nix-community/nixago/issues/30)) ([f904f54](https://github.com/nix-community/nixago/commit/f904f54eb5b60414d6411d0d43eb33360b707e88)) +* provide a stand-alone installation runnable for every hook ([#41](https://github.com/nix-community/nixago/issues/41)) ([8aa25d6](https://github.com/nix-community/nixago/commit/8aa25d69cb0c78c9ab7b72ef6291a093cf481218)) +* reify requests ([#42](https://github.com/nix-community/nixago/issues/42)) ([1c8f4b3](https://github.com/nix-community/nixago/commit/1c8f4b38e5aa6348600747db9109baba3d7c0b95)) +* **request:** default format value to file extension ([#37](https://github.com/nix-community/nixago/issues/37)) ([c893573](https://github.com/nix-community/nixago/commit/c893573b94c0c76b2a701c811ceceaaa10f1d4c6)), closes [#28](https://github.com/nix-community/nixago/issues/28) + + +### Bug Fixes + +* 1000 nixpkgs; compat with numtide/nixpkgs-unfree ([#51](https://github.com/nix-community/nixago/issues/51)) ([d686345](https://github.com/nix-community/nixago/commit/d68634526733c79a2ca4fcc87c25a1ceabf132f4)) +* **core:** recover the unbound freeformType contract per module system ([#34](https://github.com/nix-community/nixago/issues/34)) ([1640dd9](https://github.com/nix-community/nixago/commit/1640dd9bc8246b5ef23664b5160a1b7a5b4cf57c)) +* don't leave traces in the hook's environment ([#46](https://github.com/nix-community/nixago/issues/46)) ([21272c3](https://github.com/nix-community/nixago/commit/21272c35589c3460ae1515b59c69a8e356baab02)), closes [#45](https://github.com/nix-community/nixago/issues/45) +* **hook:** creates relative paths before linking/copying ([#36](https://github.com/nix-community/nixago/issues/36)) ([0fb7666](https://github.com/nix-community/nixago/commit/0fb76662c652c4b6668c73c357330d7457bc2ffe)), closes [#33](https://github.com/nix-community/nixago/issues/33) +* run extra in subshell so that the environment is not messed up ([#44](https://github.com/nix-community/nixago/issues/44)) ([608abdd](https://github.com/nix-community/nixago/commit/608abdd0fe6729d1f7244e03f1a7f8a5d6408898)) +* the quickstart guide ([#35](https://github.com/nix-community/nixago/issues/35)) ([3a5cb34](https://github.com/nix-community/nixago/commit/3a5cb3439fbeccafa1cb960435ba01800a7438db)) + ## [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 5f35587..3b2ca28 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; });