Skip to content

Commit

Permalink
Prepare 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
berberman committed Sep 8, 2023
1 parent 1dd3e62 commit cd11ec2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
`uusi` uses [PVP Versioning][1].
The changelog is available [on GitHub][2].

## 0.4.3.0

* Use .cabal file in cwd if the target is not set
* Support `Cabal` 3.6, 3.8, and 3.10.

## 0.4.2.0

* Support `Cabal-3.4`
Expand Down
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@
let
pkgs = import nixpkgs {
system = "x86_64-linux";
overlays = [ self.overlay ];
overlays = [ self.overlays.default ];
};
in with pkgs; {
overlay = self: super:
overlays.default = self: super:
let
hpkgs = super.haskellPackages;
uusi = hpkgs.callCabal2nix "uusi" ./. { };
in with super;
with haskell.lib; {
inherit uusi;
uusi-dev =
addBuildTools uusi [ cabal-install ];
addBuildTools uusi [ cabal-install haskell-language-server ];
};
defaultPackage.x86_64-linux = uusi;
devShell.x86_64-linux = uusi-dev.envFunc { };
packages.x86_64-linux.default = uusi;
devShells.x86_64-linux.default = uusi-dev.envFunc { };
};
}
4 changes: 2 additions & 2 deletions uusi.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: uusi
version: 0.4.2.0
version: 0.4.3.0
synopsis: Tweak .cabal files
description:
@uusi@ is a command-line program to tweak .cabal files.
Expand All @@ -13,7 +13,7 @@ license: MIT
license-file: LICENSE
author: berberman
maintainer: berberman <berberman@yandex.com>
copyright: 2020-2021 berberman
copyright: 2020-2023 berberman
category: Distribution
build-type: Simple
extra-doc-files:
Expand Down

0 comments on commit cd11ec2

Please sign in to comment.