From 5532263920e3cdcd8563e174ec19174f0a0705d2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 20 Jun 2022 21:41:37 +0000 Subject: [PATCH] chore(master): release 3.1.0 --- CHANGELOG.md | 14 ++++++++++++++ flake.nix | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb66b70..1245374 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [3.1.0](https://github.com/nix-community/nixago/compare/v3.0.0...v3.1.0) (2022-06-20) + + +### Features + +* 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)) +* locate the request file, if possible ([#30](https://github.com/nix-community/nixago/issues/30)) ([f904f54](https://github.com/nix-community/nixago/commit/f904f54eb5b60414d6411d0d43eb33360b707e88)) + + +### Bug Fixes + +* **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)) +* **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) + ## [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; });