diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e7e3ed3fd..7881a96572 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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). -## [Unreleased] +## [0.3.5] - 2020-03-10 ### Added - Parent flows can now forward inputs to active contexts of subflows. - `forward` parameter in `DataFlow` diff --git a/configloader/yaml/dffml_config_yaml/version.py b/configloader/yaml/dffml_config_yaml/version.py index 59614904a7..fb510e8784 100644 --- a/configloader/yaml/dffml_config_yaml/version.py +++ b/configloader/yaml/dffml_config_yaml/version.py @@ -1 +1 @@ -VERSION = "0.0.7" +VERSION = "0.0.8" diff --git a/configloader/yaml/setup_common.py b/configloader/yaml/setup_common.py index f382bfa293..09663c5e15 100644 --- a/configloader/yaml/setup_common.py +++ b/configloader/yaml/setup_common.py @@ -11,7 +11,7 @@ AUTHOR_EMAIL = "john.s.andersen@intel.com" # Install dffml if it is not installed in development mode INSTALL_REQUIRES = [] + ( - ["dffml>=0.3.4"] + ["dffml>=0.3.5"] if not any( list( map( diff --git a/dffml/version.py b/dffml/version.py index 7008d41c0f..360e5c06fa 100644 --- a/dffml/version.py +++ b/dffml/version.py @@ -7,4 +7,4 @@ Version of DFFML """ -VERSION = "0.3.4" +VERSION = "0.3.5" diff --git a/docs/contributing/codebase.rst b/docs/contributing/codebase.rst index b92dddadc9..50861eebd2 100644 --- a/docs/contributing/codebase.rst +++ b/docs/contributing/codebase.rst @@ -170,7 +170,7 @@ You might have asked yourself, what is this thing? .. code-block:: python INSTALL_REQUIRES = [] + ( - ["dffml>=0.3.4"] + ["dffml>=0.3.5"] if not any( list( map( diff --git a/docs/index.rst b/docs/index.rst index 6949577610..c97513b3f4 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -32,8 +32,6 @@ Output: You can use DFFML from the command line, Python, or the HTTP API, see the :doc:`quickstart/model` to get started right away. -The web UI (under heavy development) can be found `here `_. - This is the documentation for the latest release, documentation for the master branch can be found `here `_. diff --git a/examples/shouldi/setup_common.py b/examples/shouldi/setup_common.py index f967bf99a3..58792af4c3 100644 --- a/examples/shouldi/setup_common.py +++ b/examples/shouldi/setup_common.py @@ -11,7 +11,7 @@ AUTHOR_EMAIL = "john.s.andersen@intel.com" # Install dffml if it is not installed in development mode INSTALL_REQUIRES = [] + ( - ["dffml>=0.3.4"] + ["dffml>=0.3.5"] if not any( list( map( diff --git a/examples/shouldi/shouldi/version.py b/examples/shouldi/shouldi/version.py index 0862e1ec5a..9b0a593bec 100644 --- a/examples/shouldi/shouldi/version.py +++ b/examples/shouldi/shouldi/version.py @@ -1 +1 @@ -VERSION = "0.0.5" +VERSION = "0.0.6" diff --git a/feature/auth/dffml_feature_auth/version.py b/feature/auth/dffml_feature_auth/version.py index 0862e1ec5a..9b0a593bec 100644 --- a/feature/auth/dffml_feature_auth/version.py +++ b/feature/auth/dffml_feature_auth/version.py @@ -1 +1 @@ -VERSION = "0.0.5" +VERSION = "0.0.6" diff --git a/feature/auth/setup.py b/feature/auth/setup.py index 450e8fca23..f5c18c3296 100644 --- a/feature/auth/setup.py +++ b/feature/auth/setup.py @@ -19,7 +19,7 @@ readme = f.read() INSTALL_REQUIRES = [] + ( - ["dffml>=0.3.4"] + ["dffml>=0.3.5"] if not any( list( map( diff --git a/feature/git/dffml_feature_git/version.py b/feature/git/dffml_feature_git/version.py index 4b51ef6f89..c56061d859 100644 --- a/feature/git/dffml_feature_git/version.py +++ b/feature/git/dffml_feature_git/version.py @@ -1 +1 @@ -VERSION = "0.2.4" +VERSION = "0.2.5" diff --git a/feature/git/setup.py b/feature/git/setup.py index 327615a289..fe10e95425 100644 --- a/feature/git/setup.py +++ b/feature/git/setup.py @@ -19,7 +19,7 @@ readme = f.read() INSTALL_REQUIRES = ["python-dateutil>=2.7.3"] + ( - ["dffml>=0.3.4"] + ["dffml>=0.3.5"] if not any( list( map( diff --git a/model/scikit/dffml_model_scikit/version.py b/model/scikit/dffml_model_scikit/version.py index 9b0a593bec..59614904a7 100644 --- a/model/scikit/dffml_model_scikit/version.py +++ b/model/scikit/dffml_model_scikit/version.py @@ -1 +1 @@ -VERSION = "0.0.6" +VERSION = "0.0.7" diff --git a/model/scikit/setup.py b/model/scikit/setup.py index b68a6131ce..331b9377b2 100644 --- a/model/scikit/setup.py +++ b/model/scikit/setup.py @@ -14,7 +14,7 @@ "joblib>=0.13.2", "pandas>=0.25.0", ] + ( - ["dffml>=0.3.4"] + ["dffml>=0.3.5"] if not any( list( map( diff --git a/model/scratch/dffml_model_scratch/version.py b/model/scratch/dffml_model_scratch/version.py index 0862e1ec5a..9b0a593bec 100644 --- a/model/scratch/dffml_model_scratch/version.py +++ b/model/scratch/dffml_model_scratch/version.py @@ -1 +1 @@ -VERSION = "0.0.5" +VERSION = "0.0.6" diff --git a/model/scratch/setup.py b/model/scratch/setup.py index b072080e89..e93601b577 100644 --- a/model/scratch/setup.py +++ b/model/scratch/setup.py @@ -19,7 +19,7 @@ readme = f.read() INSTALL_REQUIRES = ["numpy>=1.16.4"] + ( - ["dffml>=0.3.4"] + ["dffml>=0.3.5"] if not any( list( map( diff --git a/model/tensorflow/dffml_model_tensorflow/version.py b/model/tensorflow/dffml_model_tensorflow/version.py index 4b51ef6f89..c56061d859 100644 --- a/model/tensorflow/dffml_model_tensorflow/version.py +++ b/model/tensorflow/dffml_model_tensorflow/version.py @@ -1 +1 @@ -VERSION = "0.2.4" +VERSION = "0.2.5" diff --git a/model/tensorflow/setup.py b/model/tensorflow/setup.py index cf242757f3..3cd4eb7278 100644 --- a/model/tensorflow/setup.py +++ b/model/tensorflow/setup.py @@ -19,7 +19,7 @@ readme = f.read() INSTALL_REQUIRES = ["tensorflow>=2.0.0"] + ( - ["dffml>=0.3.4"] + ["dffml>=0.3.5"] if not any( list( map( diff --git a/model/tensorflow_hub/dffml_model_tensorflow_hub/version.py b/model/tensorflow_hub/dffml_model_tensorflow_hub/version.py index bc4ffb3d66..4d38941470 100644 --- a/model/tensorflow_hub/dffml_model_tensorflow_hub/version.py +++ b/model/tensorflow_hub/dffml_model_tensorflow_hub/version.py @@ -1 +1 @@ -VERSION = "0.0.2" +VERSION = "0.0.3" diff --git a/model/tensorflow_hub/setup.py b/model/tensorflow_hub/setup.py index aa55fdfee3..a7522f1d49 100644 --- a/model/tensorflow_hub/setup.py +++ b/model/tensorflow_hub/setup.py @@ -26,7 +26,7 @@ "numpy>=1.16.4", ] + ( - ["dffml>=0.3.4"] + ["dffml>=0.3.5"] if not any( list( map( diff --git a/service/http/dffml_service_http/version.py b/service/http/dffml_service_http/version.py index 59614904a7..fb510e8784 100644 --- a/service/http/dffml_service_http/version.py +++ b/service/http/dffml_service_http/version.py @@ -1 +1 @@ -VERSION = "0.0.7" +VERSION = "0.0.8" diff --git a/service/http/setup.py b/service/http/setup.py index 89c16b945c..36dd7e8aac 100644 --- a/service/http/setup.py +++ b/service/http/setup.py @@ -11,7 +11,7 @@ AUTHOR_EMAIL = "john.s.andersen@intel.com" # Install dffml if it is not installed in development mode INSTALL_REQUIRES = ["aiohttp>=3.5.4", "aiohttp_cors>=0.7.0"] + ( - ["dffml>=0.3.4"] + ["dffml>=0.3.5"] if not any( list( map( diff --git a/source/mysql/dffml_source_mysql/version.py b/source/mysql/dffml_source_mysql/version.py index 9b0a593bec..59614904a7 100644 --- a/source/mysql/dffml_source_mysql/version.py +++ b/source/mysql/dffml_source_mysql/version.py @@ -1 +1 @@ -VERSION = "0.0.6" +VERSION = "0.0.7" diff --git a/source/mysql/setup_common.py b/source/mysql/setup_common.py index f64a40ce46..47c9dce340 100644 --- a/source/mysql/setup_common.py +++ b/source/mysql/setup_common.py @@ -11,7 +11,7 @@ AUTHOR_EMAIL = "kjlsudharsana@gmail.com" # Install dffml if it is not installed in development mode INSTALL_REQUIRES = [] + ( - ["dffml>=0.3.4"] + ["dffml>=0.3.5"] if not any( list( map(