From 6d9a192c54690e1736f3facd241df317f95ad8a1 Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Wed, 26 Feb 2020 16:49:05 +0000 Subject: [PATCH] Version 0.12.0 --- README.md | 4 ---- doc/release-notes/release-notes-v0.12.0.md | 2 ++ mmgen/globalvars.py | 4 ++-- setup.py | 3 +-- 4 files changed, 5 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index eff15be5..38efc56a 100644 --- a/README.md +++ b/README.md @@ -133,10 +133,6 @@ standard. Linux, Armbian, Raspbian, Windows/MSYS2 -#### Supported platforms: - -Linux, Armbian, Raspbian, Windows/MSYS2 - ### Download/Install > #### [Install a prebuilt bootable image (MMGenLive) on a USB stick][8] diff --git a/doc/release-notes/release-notes-v0.12.0.md b/doc/release-notes/release-notes-v0.12.0.md index c995131c..fc68a551 100644 --- a/doc/release-notes/release-notes-v0.12.0.md +++ b/doc/release-notes/release-notes-v0.12.0.md @@ -50,6 +50,8 @@ tools as references: zcash-mini a2b35042 (https://github.com/FiloSottile/zcash-mini) pycoin 11f60a7c (https://github.com/richardkiss/pycoin) vanitygen-plus 22123128 (https://github.com/exploitagency/vanitygen-plus) + MoneroPy 98e7feb2 (https://github.com/bigreddmachine/MoneroPy) + ethkey 2.7.2 (https://github.com/paritytech/parity-ethereum) [xo]: https://github.com/mmgen/mmgen/wiki/XOR-Seed-Splitting:-Theory-and-Practice [dc]: https://github.com/mmgen/mmgen/blob/master/mmgen/daemon.py diff --git a/mmgen/globalvars.py b/mmgen/globalvars.py index 3c449f4f..637fba36 100755 --- a/mmgen/globalvars.py +++ b/mmgen/globalvars.py @@ -38,8 +38,8 @@ class g(object): # Constants: - version = '0.11.099' - release_date = 'May 2019' + version = '0.12.0' + release_date = 'February 2020' proj_name = 'MMGen' proj_url = 'https://github.com/mmgen/mmgen' diff --git a/setup.py b/setup.py index 889aae30..c90bb193 100755 --- a/setup.py +++ b/setup.py @@ -20,13 +20,12 @@ import sys,os,subprocess from shutil import copy2 ver = sys.version_info[:2] -min_ver = (3,5) +min_ver = (3,6) if ver[0] < min_ver[0] or ver[1] < min_ver[1]: m = '{}.{}: wrong Python version. MMGen requires Python {M}.{m} or greater\n' sys.stderr.write(m.format(*ver,M=min_ver[0],m=min_ver[1])) sys.exit(1) -have_arm = subprocess.check_output(['uname','-m']).strip() == b'aarch64' have_msys2 = subprocess.check_output(['uname','-s']).strip()[:7] == b'MSYS_NT' from distutils.core import setup,Extension