Skip to content

Commit 79ac848

Browse files
committed
build: Raise version to 0.19.2.23
1 parent 2b4fff6 commit 79ac848

File tree

9 files changed

+18
-6
lines changed

9 files changed

+18
-6
lines changed

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ AC_PREREQ([2.60])
33
define(_CLIENT_VERSION_MAJOR, 0)
44
define(_CLIENT_VERSION_MINOR, 19)
55
define(_CLIENT_VERSION_REVISION, 2)
6-
define(_CLIENT_VERSION_PARTICL, 22)
6+
define(_CLIENT_VERSION_PARTICL, 23)
77
define(_CLIENT_VERSION_BUILD, 0)
88
define(_CLIENT_VERSION_RC, 0)
99
define(_CLIENT_VERSION_IS_RELEASE, true)
1010
define(_COPYRIGHT_YEAR_BTC, 2021)
11-
define(_COPYRIGHT_YEAR, 2022)
11+
define(_COPYRIGHT_YEAR, 2023)
1212
define(_COPYRIGHT_HOLDERS,[The %s developers])
1313
define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Particl Core]])
1414
AC_INIT([Particl Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION._CLIENT_VERSION_PARTICL],[https://github.com/particl/particl-core/issues],[particl],[https://particl.io/])

contrib/gitian-descriptors/gitian-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: "particl-linux-0.19.2.22"
2+
name: "particl-linux-0.19.2.23"
33
enable_cache: true
44
sudo: true
55
distro: "ubuntu"

contrib/gitian-descriptors/gitian-osx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: "particl-osx-0.19.2.22"
2+
name: "particl-osx-0.19.2.23"
33
enable_cache: true
44
distro: "ubuntu"
55
suites:

contrib/gitian-descriptors/gitian-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: "particl-win-0.19.2.22"
2+
name: "particl-win-0.19.2.23"
33
enable_cache: true
44
sudo: true
55
distro: "ubuntu"

doc/release-notes-particl.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
0.19.2.23
2+
==============
3+
4+
- wallet: Fix walletpassphrasechange after encryptwallet without restarting.
5+
- New checkpoints.
6+
- Added new PID for Ledger Nano S Plus (5015).
7+
8+
19
0.19.2.22
210
==============
311

src/bench/block_assemble.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212

1313
#include <list>
14+
#include <array>
1415
#include <vector>
1516

1617
static void AssembleBlock(benchmark::State& state)

src/net_processing.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
#include <smsg/smessage.h>
3333

3434
#include <memory>
35+
#include <array>
3536
#include <typeinfo>
3637

3738
#if defined(NDEBUG)

src/qt/sendcoinsdialog.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@
4040

4141
#include <anon.h>
4242

43+
#include <array>
44+
4345
static const std::array<int, 9> confTargets = { {2, 4, 6, 12, 24, 48, 144, 504, 1008} };
4446
int getConfTargetForIndex(int index) {
4547
if (index+1 > static_cast<int>(confTargets.size())) {

test/functional/feature_part_anon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def run_test(self):
7474
addr_info = nodes[2].getaddressinfo(change_addr2)
7575
assert(addr_info['ischange'] is True)
7676

77-
# Recieving wallet should not mark an output as change if tx spends no inputs
77+
# Receiving wallet should not mark an output as change if tx spends no inputs
7878
txnHash2 = nodes[1].sendtypeto('anon', 'part', [{'address': change_addr2, 'amount': 1, 'narr': 'node1 -> node2 a->p'}, ], '', '', 5)
7979
txnHashes.append(txnHash2)
8080

0 commit comments

Comments
 (0)