Browse Source

Version 0.12.0

The MMGen Project 5 years ago
parent
commit
6d9a192c54
4 changed files with 5 additions and 8 deletions
  1. 0 4
      README.md
  2. 2 0
      doc/release-notes/release-notes-v0.12.0.md
  3. 2 2
      mmgen/globalvars.py
  4. 1 2
      setup.py

+ 0 - 4
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]

+ 2 - 0
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

+ 2 - 2
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'

+ 1 - 2
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