From 7820c87b79fefbea2b30d41117fcf5e4a393fd5e Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Thu, 3 Dec 2020 06:36:15 +0000 Subject: [PATCH] bump version --- CHANGELOG.md | 7 +++++++ src/etc/onionrvalues.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c95a5244..6109e072 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [7.2.0] - 2020-12-03 + +* Purge blocks not meeting current pow on startup +* Check block POW before LAN sync +* WSL fixes + ## [7.1.0] - 2020-11-23 * Check for ownership of existing dirs in createdirs, this prevents the rare edge case where a user might use a home directory in a location an attacker could write (allowing arbitrary code execution via plugins). This was already partially mitigated by the chmod of the home directory in any case, but this further fixes the issue. diff --git a/src/etc/onionrvalues.py b/src/etc/onionrvalues.py index 6c9db40f..9b6ef81c 100755 --- a/src/etc/onionrvalues.py +++ b/src/etc/onionrvalues.py @@ -23,7 +23,7 @@ import filepaths DENIABLE_PEER_ADDRESS = "OVPCZLOXD6DC5JHX4EQ3PSOGAZ3T24F75HQLIUZSDSMYPEOXCPFA" PASSWORD_LENGTH = 25 ONIONR_TAGLINE = 'Private P2P Communication - GPLv3 - https://Onionr.net' -ONIONR_VERSION = '7.1.0' +ONIONR_VERSION = '7.2.0' ONIONR_VERSION_CODENAME = 'Genesis' ONIONR_VERSION_TUPLE = tuple(ONIONR_VERSION.split('.')) # (MAJOR, MINOR, VERSION) API_VERSION = '2' # increments of 1; only change when something fundamental about how the API works changes. This way other nodes know how to communicate without learning too much information about you.