diff --git a/CHANGELOG.md b/CHANGELOG.md index d718d43..2498a7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # *Structure_threader* changelog +## Changes since v1.2.7 + +### Bug fixes +* *Structure_threader* now always makes a sanity check for `mainparams` and `extraparams`. + +### New features: +* New option introduced: `--seed`, which allows the user to define a random seed value. It is not mandatory, and defaults to "1235813". +* *Structure_threader* now checks if the `RANDOMIZE` option is set in the `extraparams` file. If it is, it gets disabled since random seeds are now handled internally. + +--- ## Changes since v1.2.6 diff --git a/setup.py b/setup.py index 2566fad..dbe1a87 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 -# Copyright 2016 Francisco Pina Martins +# Copyright 2016-2018 Francisco Pina Martins # This file is part of structure_threader. # structure_threader is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -55,7 +55,7 @@ def platform_detection(install_binaries=True): # Set some variables (PKGBUILD inspired) DATA_FILES = platform_detection() -VERSION = "1.2.7" +VERSION = "1.2.8" URL = "https://github.com/StuntsPT/Structure_threader"