Skip to content

Commit

Permalink
Release v0.1.6 (#1005)
Browse files Browse the repository at this point in the history
* release 0.1.6 of macros

* release 0.1.6 of moose

* release 0.1.6 of moose-modules

* release 0.1.6 of pymoose

* release 0.1.6 of elk

* release 0.1.6 of reindeer

* added changelog for release 0.1.6
  • Loading branch information
kkloberdanz authored Mar 24, 2022
1 parent 86139ea commit 86f82ea
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion elk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "elk"
version = "0.1.6-beta.1"
version = "0.1.6"
license = "MIT"
edition = "2018"
authors = []
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "macros"
version = "0.1.6-beta.1"
version = "0.1.6"
license = "MIT"
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion modules/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moose-modules"
version = "0.1.6-beta.1"
version = "0.1.6"
license = "MIT"
edition = "2018"
authors = []
Expand Down
2 changes: 1 addition & 1 deletion moose/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moose"
version = "0.1.6-beta.1"
version = "0.1.6"
license = "MIT"
authors = [""]
description = ""
Expand Down
2 changes: 1 addition & 1 deletion pymoose/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pymoose"
version = "0.1.6-beta.1"
version = "0.1.6"
license = "MIT/Apache-2.0"
authors = [""]
description = ""
Expand Down
2 changes: 1 addition & 1 deletion pymoose/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[],
Expand Down
2 changes: 1 addition & 1 deletion reindeer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "reindeer"
version = "0.1.6-beta.1"
version = "0.1.6"
license = "MIT"
edition = "2018"
authors = []
Expand Down

0 comments on commit 86f82ea

Please sign in to comment.