Skip to content

Commit

Permalink
Merge pull request #1540 from CounterpartyXCP/beta1
Browse files Browse the repository at this point in the history
Bump version
  • Loading branch information
adamkrellenstein authored Mar 20, 2024
2 parents 23a99bc + 056e578 commit a4ec4de
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion counterparty-cli/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.31.0
termcolor==2.4.0
counterparty-lib==10.0.0-alpha
counterparty-lib==10.0.0-beta.1
4 changes: 2 additions & 2 deletions counterparty-lib/counterpartylib/lib/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@


# Semantic Version
__version__ = "10.0.0-alpha" # for hatch
__version__ = "10.0.0-beta.1" # for hatch
VERSION_STRING = __version__
version = VERSION_STRING.split('-')[0].split('.')
VERSION_MAJOR = int(version[0])
VERSION_MINOR = int(version[1])
VERSION_REVISION = int(version[2])
VERSION_PRE_RELEASE = '-'.join(VERSION_STRING.split('-')[1:])

ADDRINDEXRS_VERSION = "0.4.3"
ADDRINDEXRS_VERSION = "0.4.4"

# When updating to a new verion, we are making a rollback if major version changes.
# If minor version changes and if needed, we are making a reparse from a given block.
Expand Down
2 changes: 1 addition & 1 deletion counterparty-lib/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ plyvel==1.5.1
arc4==0.4.0
halo==0.0.31
termcolor==2.4.0
counterparty-rs==10.0.0-alpha
counterparty-rs==10.0.0-beta.1
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.0.0-alpha"
version = "10.0.0-beta.1"
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 release-notes/release-notes-v10.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This release does not include any protocol changes, so there is no deadline for

Because this release includes numerous changes to the database schema, a full database rebuild is required and the major version number has been bumped from 9 to 10. Follow the updated installation instructions in the [README](/README.md) to download and install the latest version of Counterparty Core, run `counterparty-server kickstart` (while `bitcoind` is not running), then start the server with `counterparty-server start`. The rebuild should happen automatically, and it should take between 8 and 24 hours hours to complete.

**IMPORTANT** Be certain that you are running the latest version of AddrIndexRs (v0.4.3).
**IMPORTANT** Be certain that you are running the latest version of AddrIndexRs (v0.4.4).


# ChangeLog
Expand Down

0 comments on commit a4ec4de

Please sign in to comment.