Bumped version to 1.9.1

- Also updated electrum-cash-protocol submodule pointer
- Small typo fix in unix-man-page.md
This commit is contained in:
Calin Culianu 2023-04-08 19:28:23 -04:00
parent 8dc88a0415
commit e7e27c0be9
No known key found for this signature in database
GPG key ID: 21810A542031C02C
4 changed files with 6 additions and 6 deletions

View file

@ -1,5 +1,5 @@
Name: {{{ git_repo_name name="fulcrum" }}}
Version: 1.9.0
Version: 1.9.1
Release: {{{ git_repo_version }}}%{?dist}
Summary: A fast & nimble SPV server for Bitcoin Cash & Bitcoin BTC

@ -1 +1 @@
Subproject commit ac4329b546759eda9ed85c27c9a252a84a19cef3
Subproject commit 91c7a152a8c463a7275887c0bce2fa39156cc6b3

View file

@ -1,6 +1,6 @@
% FULCRUM(1) Version 1.9.0 | Fulcrum Manual
% FULCRUM(1) Version 1.9.1 | Fulcrum Manual
% Fulcrum is written by Calin Culianu (cculianu)
% March 21, 2023
% April 08, 2023
# NAME
@ -19,7 +19,7 @@ DESCRIPTION
**NOTE:**
Electron Cash and/or Electrum at this time no longer support connecting to non-SSL servers, so you should probably configure SSL for production use.
It is recommended you specify a data dir (`-D` via CLI or `datadir-` via config file)
It is recommended you specify a data dir (`-D` via CLI or `datadir=` via config file)
on an SSD drive for best results.
Synching against `testnet` should take you about 10-20 minutes (more on slower
machines), and mainnet can take anywhere from 4 hours to 20+ hours, depending on

View file

@ -39,7 +39,7 @@ struct InternalError : Exception { using Exception::Exception; ~InternalError()
struct BadArgs : Exception { using Exception::Exception; ~BadArgs() override; };
#define APPNAME "Fulcrum"
#define VERSION "1.9.0"
#define VERSION "1.9.1"
#ifdef QT_DEBUG
inline constexpr bool isReleaseBuild() { return false; }
#else