Skip to content

Commit

Permalink
Merge pull request #2940 from CounterpartyXCP/bump
Browse files Browse the repository at this point in the history
Bump version
  • Loading branch information
adamkrellenstein authored Jan 15, 2025
2 parents eb05d6c + 62ce933 commit 1f155a6
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion apiary.apib
Original file line number Diff line number Diff line change
Expand Up @@ -1466,7 +1466,7 @@ Returns server information and the list of documented routes in JSON format.
"result": {
"server_ready": true,
"network": "mainnet",
"version": "10.9.0-rc.1",
"version": "10.9.0",
"backend_height": 850214,
"counterparty_height": 850214,
"documentation": "https://counterpartycore.docs.apiary.io/",
Expand Down
6 changes: 3 additions & 3 deletions counterparty-core/counterpartycore/lib/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


# Semantic Version
__version__ = "10.9.0-rc.1" # for hatch
__version__ = "10.9.0" # for hatch
VERSION_STRING = __version__
version = VERSION_STRING.split("-")[0].split(".")
VERSION_MAJOR = int(version[0])
Expand All @@ -30,8 +30,8 @@
]
NEED_REPARSE_IF_MINOR_IS_LESS_THAN_TESTNET4 = None

NEED_ROLLBACK_IF_MINOR_IS_LESS_THAN = [(8, 871780)]
NEED_ROLLBACK_IF_MINOR_IS_LESS_THAN_TESTNET = [(8, 3522632)]
NEED_ROLLBACK_IF_MINOR_IS_LESS_THAN = [(8, 871780), (9, 871780)]
NEED_ROLLBACK_IF_MINOR_IS_LESS_THAN_TESTNET = [(8, 3522632), (9, 3522632)]
NEED_ROLLBACK_IF_MINOR_IS_LESS_THAN_TESTNET4 = None

STATE_DB_NEED_REFRESH_ON_VERSION_UPDATE = ["10.9.0-rc.1", "10.9.0"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ Returns server information and the list of documented routes in JSON format.
"result": {
"server_ready": true,
"network": "mainnet",
"version": "10.9.0-rc.1",
"version": "10.9.0",
"backend_height": 850214,
"counterparty_height": 850214,
"documentation": "https://counterpartycore.docs.apiary.io/",
Expand Down
2 changes: 1 addition & 1 deletion counterparty-core/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ hypothesis==6.116.0
bitcoin-utils==0.7.1
pyzstd==0.16.2
dredd_hooks==0.2.0
counterparty-rs==10.9.0-rc.1
counterparty-rs==10.9.0
2 changes: 1 addition & 1 deletion counterparty-rs/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion counterparty-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "counterparty-rs"
version = "10.9.0-rc.1"
version = "10.9.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion counterparty-wallet/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ colorlog==6.8.0
python-dateutil==2.8.2
requests==2.32.0
termcolor==2.4.0
counterparty-core==10.9.0-rc.1
counterparty-core==10.9.0
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ x-bitcoind-common: &bitcoind-common
restart: unless-stopped

x-counterparty-common: &counterparty-common
image: counterparty/counterparty:v10.9.0-rc.1
image: counterparty/counterparty:v10.9.0
stop_grace_period: 1m
volumes:
- data:/root/.bitcoin
Expand Down
2 changes: 1 addition & 1 deletion release-notes/release-notes-v10.9.0.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Release Notes - Counterparty Core v10.9.0 (2025-01-??)
# Release Notes - Counterparty Core v10.9.0 (2025-01-15)

This release represents a major technical milestone in the development of Counterparty Core: Counterparty no longer has AddrIndexRs as an external dependency. Originally, AddrIndexRs was used for transaction construction, and at the end of 2023 it was accidentally turned into a consensus-critical dependency (causing a number of subsequent consensus breaks and reliability issues). As of today, the only external dependency for a Counterparty node is Bitcoin Core itself.

Expand Down

0 comments on commit 1f155a6

Please sign in to comment.