Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Unreleased

## Changed

- **BREAKING**: The package manifest is now `nupackage.nuon` instead of `nupackage.toml`. The lockfile is also in `nuon` format. Existing projects must migrate:
```nushell
open nupackage.toml | to nuon --indent 2 | save -f nupackage.nuon
rm nupackage.toml
rm quiver.lock
qv install
```
- **BREAKING**: The global Quiver config is now `config.nuon`. Navigate to your global quiver config dir and run the following to migrate:
```nushell
open config.toml | to nuon --indent 2 | save -f config.nuon
rm config.toml
rm quiver.lock
qv install -g
```
- Quiver will warn users with migration instructions when a legacy `nupackage.toml` or `config.toml` is detected.

# Version 0.6.1 (2026-05-08)

## Added
Expand Down
Loading