Skip to content

Commit cd11ec2

Browse files
committed
Prepare 0.4.3
1 parent 1dd3e62 commit cd11ec2

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
`uusi` uses [PVP Versioning][1].
44
The changelog is available [on GitHub][2].
55

6+
## 0.4.3.0
7+
8+
* Use .cabal file in cwd if the target is not set
9+
* Support `Cabal` 3.6, 3.8, and 3.10.
10+
611
## 0.4.2.0
712

813
* Support `Cabal-3.4`

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@
55
let
66
pkgs = import nixpkgs {
77
system = "x86_64-linux";
8-
overlays = [ self.overlay ];
8+
overlays = [ self.overlays.default ];
99
};
1010
in with pkgs; {
11-
overlay = self: super:
11+
overlays.default = self: super:
1212
let
1313
hpkgs = super.haskellPackages;
1414
uusi = hpkgs.callCabal2nix "uusi" ./. { };
1515
in with super;
1616
with haskell.lib; {
1717
inherit uusi;
1818
uusi-dev =
19-
addBuildTools uusi [ cabal-install ];
19+
addBuildTools uusi [ cabal-install haskell-language-server ];
2020
};
21-
defaultPackage.x86_64-linux = uusi;
22-
devShell.x86_64-linux = uusi-dev.envFunc { };
21+
packages.x86_64-linux.default = uusi;
22+
devShells.x86_64-linux.default = uusi-dev.envFunc { };
2323
};
2424
}

uusi.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: uusi
3-
version: 0.4.2.0
3+
version: 0.4.3.0
44
synopsis: Tweak .cabal files
55
description:
66
@uusi@ is a command-line program to tweak .cabal files.
@@ -13,7 +13,7 @@ license: MIT
1313
license-file: LICENSE
1414
author: berberman
1515
maintainer: berberman <[email protected]>
16-
copyright: 2020-2021 berberman
16+
copyright: 2020-2023 berberman
1717
category: Distribution
1818
build-type: Simple
1919
extra-doc-files:

0 commit comments

Comments
 (0)