Skip to content

Commit fa30b97

Browse files
authored
Merge pull request #94 from serokell/yorickvp/release-0.5.0
Update changelog, bump version to 0.5.0
2 parents a0a0b89 + f743591 commit fa30b97

File tree

3 files changed

+19
-12
lines changed

3 files changed

+19
-12
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@
77

88
# Revision history for nixfmt
99

10+
## 0.5.0 -- 2022-03-15
11+
* Add a nix flake to the nixfmt project.
12+
* Add a --verify flag to check idempotency.
13+
* Support nix path (`./${foo}.nix`) interpolations.
14+
* Fix escaping of interpolations after single quotes.
15+
* Fix handling of multiline strings with spaces in the last line.
16+
1017
## 0.4.0 -- 2020-02-10
1118
* Report non-conforming files on the same line to aid line-oriented processing
1219
* Fix help, summary, and version flag contents.

flake.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nixfmt.cabal

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
cabal-version: 2.0
22

3-
-- © 2019 Serokell <hi@serokell.io>
4-
-- © 2019 Lars Jellema <lars.jellema@gmail.com>
3+
-- © 2022 Serokell <hi@serokell.io>
4+
-- © 2022 Lars Jellema <lars.jellema@gmail.com>
55
--
66
-- SPDX-License-Identifier: MPL-2.0
77

88
name: nixfmt
9-
version: 0.4.0
9+
version: 0.5.0
1010
synopsis: An opinionated formatter for Nix
1111
description:
1212
A formatter for Nix that ensures consistent and clear formatting by forgetting
@@ -17,7 +17,7 @@ license: MPL-2.0
1717
license-file: LICENSE
1818
author: Lars Jellema
1919
maintainer: lars.jellema@gmail.com
20-
copyright: 2019 Serokell, 2019 Lars Jellema
20+
copyright: 2022 Serokell, 2022 Lars Jellema
2121
category: Development
2222
build-type: Simple
2323
extra-source-files: README.md, CHANGELOG.md
@@ -41,7 +41,7 @@ executable nixfmt
4141
else
4242
buildable: True
4343
build-depends:
44-
base >= 4.12.0 && < 4.15
44+
base >= 4.12.0 && < 4.17
4545
, cmdargs >= 0.10.20 && < 0.11
4646
, nixfmt
4747
, unix >= 2.7.2 && < 2.8
@@ -81,9 +81,9 @@ library
8181

8282
hs-source-dirs: src
8383
build-depends:
84-
base >= 4.12.0 && < 4.15
85-
, megaparsec >= 9.0.1 && < 9.1
86-
, parser-combinators >= 1.0.3 && < 1.3
84+
base >= 4.12.0 && < 4.17
85+
, megaparsec >= 9.0.1 && < 9.3
86+
, parser-combinators >= 1.0.3 && < 1.4
8787
, text >= 1.2.3 && < 1.3
8888
default-language: Haskell2010
8989
ghc-options:
@@ -107,7 +107,7 @@ executable js-interface
107107
-Wredundant-constraints
108108
-Wno-orphans
109109
build-depends:
110-
base >= 4.12.0 && < 4.15
110+
base >= 4.12.0 && < 4.17
111111
, ghcjs-base >= 0.2.0 && < 0.3
112112
, nixfmt
113113
hs-source-dirs: js/

0 commit comments

Comments
 (0)