Skip to content

Commit

Permalink
Bump version to 0.30.0
Browse files Browse the repository at this point in the history
Summary:
As per title.

Depends on D16831.

Test Plan:
  ninja print-version

Reviewers: #bitcoin_abc, PiRK

Reviewed By: #bitcoin_abc, PiRK

Subscribers: PiRK

Differential Revision: https://reviews.bitcoinabc.org/D16829
  • Loading branch information
Fabcien committed Oct 2, 2024
1 parent 502de3d commit 46add9c
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set(CMAKE_USER_MAKE_RULES_OVERRIDE
)

project(bitcoin-abc
VERSION 0.29.13
VERSION 0.30.0
DESCRIPTION "Bitcoin ABC is a full node implementation of the eCash protocol."
HOMEPAGE_URL "https://www.bitcoinabc.org"
)
Expand Down
2 changes: 1 addition & 1 deletion contrib/aur/bitcoin-abc-qt/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Maintainer: Josh Ellithorpe <[email protected]>

pkgname=bitcoin-abc-qt
pkgver=0.29.13
pkgver=0.30.0
pkgrel=0
pkgdesc="Bitcoin ABC with bitcoind, bitcoin-cli, bitcoin-tx, bitcoin-seeder and bitcoin-qt"
arch=('i686' 'x86_64')
Expand Down
2 changes: 1 addition & 1 deletion contrib/aur/bitcoin-abc/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Maintainer: Josh Ellithorpe <[email protected]>

pkgname=bitcoin-abc
pkgver=0.29.13
pkgver=0.30.0
pkgrel=0
pkgdesc="Bitcoin ABC with bitcoind, bitcoin-tx, bitcoin-seeder and bitcoin-cli"
arch=('i686' 'x86_64')
Expand Down
4 changes: 2 additions & 2 deletions contrib/seeds/makeseeds.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
"ipv6": 10,
}

MIN_BLOCKS = 830000
MIN_BLOCKS = 864000

PATTERN_IPV4 = re.compile(r"^((\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})):(\d+)$")
PATTERN_IPV6 = re.compile(r"^\[([0-9a-z:]+)\]:(\d+)$")
PATTERN_ONION = re.compile(r"^([abcdefghijklmnopqrstuvwxyz234567]{16}\.onion):(\d+)$")

# Used to only select nodes with a user agent string compatible with the
# eCash network.
PATTERN_AGENT = re.compile(r"^(/Bitcoin ABC:0\.(28|29)\.(.+)/)")
PATTERN_AGENT = re.compile(r"^(/Bitcoin ABC:0\.(29|30)\.(.+)/)")


def parseline(line: str) -> Union[dict, None]:
Expand Down
19 changes: 15 additions & 4 deletions doc/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
# Bitcoin ABC 0.29.13 Release Notes
# Bitcoin ABC 0.30.0 Release Notes

Bitcoin ABC version 0.29.13 is now available from:
Bitcoin ABC version 0.30.0 is now available from:

<https://download.bitcoinabc.org/0.29.13/>
<https://download.bitcoinabc.org/0.30.0/>

This is a maintenance release with no user-visible change.
Network upgrade
---------------

At the MTP time of `1731672000` (November 15, 2024 12:00:00 UTC), the following
changes will be activated:
- Bump automatic replay protection to the next upgrade, timestamp `1747310400`
(May 15, 2025 12:00:00 UTC).
- Real time targeting, also known as the Hearbeat feature, will be enforced on
the eCash network. This makes it more difficult to mine blocks faster than
the expected 10 minutes average, preventing large bumps in difficulty that
can lead to inconsistent block intervals. Miners need to update their setup
according to the instructions from the [eCash website](https://e.cash/mining).
7 changes: 7 additions & 0 deletions doc/release-notes/release-notes-0.29.13.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Bitcoin ABC 0.29.13 Release Notes

Bitcoin ABC version 0.29.13 is now available from:

<https://download.bitcoinabc.org/0.29.13/>

This is a maintenance release with no user-visible change.

0 comments on commit 46add9c

Please sign in to comment.