Skip to content

Commit dd26564

Browse files
authored
Merge pull request #26 from freepicheep/to-nuon
Switch Manifest and Config File Format to `nuon`
2 parents 6c35693 + 5c0910c commit dd26564

13 files changed

Lines changed: 1876 additions & 709 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Unreleased
22

3+
## Changed
4+
5+
- **BREAKING**: The package manifest is now `nupackage.nuon` instead of `nupackage.toml`. The lockfile is also in `nuon` format. Existing projects must migrate:
6+
```nushell
7+
open nupackage.toml | to nuon --indent 2 | save -f nupackage.nuon
8+
rm nupackage.toml
9+
rm quiver.lock
10+
qv install
11+
```
12+
- **BREAKING**: The global Quiver config is now `config.nuon`. Navigate to your global quiver config dir and run the following to migrate:
13+
```nushell
14+
open config.toml | to nuon --indent 2 | save -f config.nuon
15+
rm config.toml
16+
rm quiver.lock
17+
qv install -g
18+
```
19+
- Quiver will warn users with migration instructions when a legacy `nupackage.toml` or `config.toml` is detected.
20+
321
# Version 0.6.1 (2026-05-08)
422

523
## Added

0 commit comments

Comments
 (0)