Skip to content

Commit f29a0a0

Browse files
committed
treewide: update changelogs
1 parent 9a42b3e commit f29a0a0

File tree

7 files changed

+33
-14
lines changed

7 files changed

+33
-14
lines changed

hnix-store-core/CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Next
1+
# [0.8.0.0](https://github.com/haskell-nix/hnix-store/compare/core-0.7.0.0...core-0.8.0.0) 2024-07-31
22

33
* Changes:
44
* `System.Nix.StorePath.makeStorePathName` renamed to `System.Nix.StorePath.mkStorePathName`
55
* `System.Nix.ReadOnlyStore` moved to `hnix-store-readonly` package
66
and renamed to `System.Nix.Store.ReadOnly` [#247](https://github.com/haskell-nix/hnix-store/pull/247)
77
* `System.Nix.Nar*` moved to `hnix-store-nar` package [#247](https://github.com/haskell-nix/hnix-store/pull/247)
88
* `Arbitrary` instances moved to `hnix-store-tests` package [#241](https://github.com/haskell-nix/hnix-store/pull/241)
9-
* `System.Nix.Internal` namespaces was removed [#236](https://github.com/haskell-nix/hnix-store/pull/236)
9+
* `System.Nix.Internal` namespace was removed [#236](https://github.com/haskell-nix/hnix-store/pull/236)
1010
* `StorePathMetadata` converted to `Metadata a` [#231](https://github.com/haskell-nix/hnix-store/pull/231)
1111
* Moved to `System.Nix.StorePath.Metadata` [#236](https://github.com/haskell-nix/hnix-store/pull/236)
1212
* Constructors of `StorePathName` and `StorePathHashPart` are no longer
@@ -159,3 +159,9 @@ exist and we can tell what common effects they should share.
159159
# 0.1.0.0 -- 2019-03-18
160160

161161
* First version.
162+
163+
---
164+
165+
`hnix-store-core` uses [PVP Versioning][1].
166+
167+
[1]: https://pvp.haskell.org

hnix-store-db/CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1-
# Unreleased 202y-mm-dd
1+
# 0.1.0.0 2024-07-31
22

3-
* First version.
3+
* Initial release
4+
5+
---
6+
7+
`hnix-store-db` uses [PVP Versioning][1].
8+
9+
[1]: https://pvp.haskell.org

hnix-store-json/CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Version [0.1.0.0](https://github.com/haskell-nix/hnix-store/compare/json-0.1.0.0...json-0.1.1.0) (2023-11-27)
1+
# 0.1.0.0 2024-07-31
22

33
* Initial release
44

@@ -7,4 +7,3 @@
77
`hnix-store-json` uses [PVP Versioning][1].
88

99
[1]: https://pvp.haskell.org
10-

hnix-store-nar/CHANGELOG.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
# Version [0.1.0.0](https://github.com/haskell-nix/hnix-store/compare/nar-0.1.0.0...nar-0.1.1.0) (2023-11-27)
1+
# 0.1.0.0 2024-07-31
22

3-
* Initial release
3+
* Initial release after a split from `hnix-store-core`
44

55
---
66

77
`hnix-store-nar` uses [PVP Versioning][1].
88

99
[1]: https://pvp.haskell.org
10-

hnix-store-readonly/CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Version [0.1.0.0](https://github.com/haskell-nix/hnix-store/compare/readonly-0.1.0.0...readonly-0.1.1.0) (2023-11-27)
1+
# 0.1.0.0 2024-07-31
22

33
* Initial release
44

@@ -7,4 +7,3 @@
77
`hnix-store-readonly` uses [PVP Versioning][1].
88

99
[1]: https://pvp.haskell.org
10-

hnix-store-remote/CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
1-
# Unreleased 202y-mm-dd
1+
# [0.7.0.0](https://github.com/haskell-nix/hnix-store/compare/remote-0.6.0.0...remote-0.7.0.0) 2024-07-31
22

33
* Changes:
44
* `StorePath` no longer carries `storePathRoot` field and we
55
have a stand-alone `StoreDir` type instead to be used instead of `FilePath`
66
when store root directory is needed as a context.
77
Fore `-remote`, this affects `runStoreOpts` and its variants [#216](https://github.com/haskell-nix/hnix-store/pull/216)
8+
* The old `MonadStore` is now deprecated and aliased to `RemoteStoreT IO`
9+
* All store operations now use `MonadRemoteStore` typeclass, which `RemoteStoreT` is an instance of
10+
* Couple of `Bool` parameters switched to enums
11+
12+
* Additions
13+
* `addToStoreNAR` store operation [#277](https://github.com/haskell-nix/hnix-store/pull/277)
14+
* `narFromPath` store operation [#279](https://github.com/haskell-nix/hnix-store/pull/279)
15+
* Initial server-side support with proxy daemon acting as MITM proxy,
16+
which allows for testing of both sides of the remote store protocol
17+
18+
The library stability is not quite there yet and should be considered experimental.
819

920
# [0.6.0.0](https://github.com/haskell-nix/hnix-store/compare/remote-0.5.0.0...remote-0.6.0.0) 2021-06-06
1021

hnix-store-tests/CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Version [0.1.0.0](https://github.com/haskell-nix/hnix-store/compare/tests-0.1.0.0...tests-0.1.1.0) (2023-11-27)
1+
# 0.1.0.0 2024-07-31
22

33
* Initial release
44

@@ -7,4 +7,3 @@
77
`hnix-store-tests` uses [PVP Versioning][1].
88

99
[1]: https://pvp.haskell.org
10-

0 commit comments

Comments
 (0)