diff --git a/CHANGELOG.md b/CHANGELOG.md index 17abc0c0e..a9f96ab0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## v0.1.6 +- Memory usage optimizations and reduced cloning +- Wellformed compiler pass to statically verify a computation with elk: elk compile -p wellformed comp.moose +- TLS support for gRCP networking +- PyTorch neural networks support +- Elk now supports all three computation formats (textual, msgpack, and bincode) +- Ensures tensors are in “standard layout” (i.e. contiguous & row-major) +- Added local file storage to moose modules (reading csv and numpy data files supported) +- start_server convenance method added to gRPC network plugin + ## v0.1.5 - Significant RAM usage improvements throughout the codebase diff --git a/elk/Cargo.toml b/elk/Cargo.toml index 7be287570..a939fc254 100644 --- a/elk/Cargo.toml +++ b/elk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elk" -version = "0.1.6-beta.1" +version = "0.1.6" license = "MIT" edition = "2018" authors = [] diff --git a/macros/Cargo.toml b/macros/Cargo.toml index b5beff940..1acb6f302 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "macros" -version = "0.1.6-beta.1" +version = "0.1.6" license = "MIT" edition = "2018" diff --git a/modules/Cargo.toml b/modules/Cargo.toml index ff4e7ae34..a14272340 100644 --- a/modules/Cargo.toml +++ b/modules/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "moose-modules" -version = "0.1.6-beta.1" +version = "0.1.6" license = "MIT" edition = "2018" authors = [] diff --git a/moose/Cargo.toml b/moose/Cargo.toml index a4e590001..ce291e613 100644 --- a/moose/Cargo.toml +++ b/moose/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "moose" -version = "0.1.6-beta.1" +version = "0.1.6" license = "MIT" authors = [""] description = "" diff --git a/pymoose/Cargo.toml b/pymoose/Cargo.toml index bec5a09bd..01c5a2066 100644 --- a/pymoose/Cargo.toml +++ b/pymoose/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pymoose" -version = "0.1.6-beta.1" +version = "0.1.6" license = "MIT/Apache-2.0" authors = [""] description = "" diff --git a/pymoose/setup.py b/pymoose/setup.py index 4e473e468..3e1660634 100644 --- a/pymoose/setup.py +++ b/pymoose/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name="pymoose", - version="0.1.5", # NOTE: auto-updated during release + version="0.1.6", # NOTE: auto-updated during release packages=setuptools.find_packages(), python_requires=">=3.6", install_requires=[], diff --git a/reindeer/Cargo.toml b/reindeer/Cargo.toml index 2cb0128e3..edd6f1d88 100644 --- a/reindeer/Cargo.toml +++ b/reindeer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reindeer" -version = "0.1.6-beta.1" +version = "0.1.6" license = "MIT" edition = "2018" authors = []