-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Release Notes - Counterparty Core v11.0.0 (2025-03-??) | ||
|
||
|
||
# Upgrading | ||
|
||
**Upgrade Instructions:** | ||
To upgrade, download the latest version of `counterparty-core` and restart `counterparty-server`. | ||
|
||
With Docker Compose: | ||
|
||
```bash | ||
cd counterparty-core | ||
git pull | ||
docker compose stop counterparty-core | ||
docker compose --profile mainnet up -d | ||
``` | ||
|
||
or use `ctrl-c` to interrupt the server: | ||
|
||
```bash | ||
cd counterparty-core | ||
git pull | ||
cd counterparty-rs | ||
pip install -e . | ||
cd ../counterparty-core | ||
pip install -e . | ||
counterparty-server start | ||
``` | ||
|
||
# ChangeLog | ||
|
||
## Bugfixes | ||
|
||
- Fix verbose mode when unpack fails | ||
- Handle correctly `DatabaseError` on API calls | ||
|
||
## Codebase | ||
|
||
|
||
## API | ||
|
||
|
||
## CLI | ||
|
||
|
||
# Credits | ||
|
||
- Ouziel Slama | ||
- Adam Krellenstein |