Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Dexter Duckworth committed Aug 4, 2023
1 parent baae5e8 commit 28199d5
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 19 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,38 @@

All notable changes to this project will be documented in this file.

## [0.1.5] - 2023-08-04

### Bug Fixes

- Ungated dependency on derive feature in ella crate
- Broken protobuf dependency during cross-compilation
- Potential race condition in topic writer

### Documentation

- Fixed broken link in ella docs
- Added build status badge to readmes
- Added contributor guidelines
- Added Docker readme
- Ella's re-exported crates now show up as submodules

### Miscellaneous Tasks

- Updated lockfile versions
- Prepared pyella package for publication
- Fixed broken links following move to new organization

### Performance

- Reduced ella-cli binary size

### Styling

- Removed unused source files
- Removed default constructor for unit struct
- Removed unused dev dependencies

## [0.1.4] - 2023-08-01

### Bug Fixes
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.1.4"
version = "0.1.5"
edition = "2021"
authors = ["Dexter Duckworth <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -23,13 +23,13 @@ repository = "https://github.com/CerebusOSS/ella"
tag = false

[workspace.dependencies]
ella-common = { path = "./ella-common", version = "0.1.4" }
ella-tensor = { path = "./ella-tensor", version = "0.1.4" }
ella-engine = { path = "./ella-engine", version = "0.1.4" }
ella-server = { path = "./ella-server", version = "0.1.4", default-features = false }
ella-derive = { path = "./ella-derive", version = "0.1.4" }
ella = { path = "./ella", version = "0.1.4", default-features = false }
pyella = { path = "./pyella", version = "0.1.4" }
ella-common = { path = "./ella-common", version = "0.1.5" }
ella-tensor = { path = "./ella-tensor", version = "0.1.5" }
ella-engine = { path = "./ella-engine", version = "0.1.5" }
ella-server = { path = "./ella-server", version = "0.1.5", default-features = false }
ella-derive = { path = "./ella-derive", version = "0.1.5" }
ella = { path = "./ella", version = "0.1.5", default-features = false }
pyella = { path = "./pyella", version = "0.1.5" }

derive_more = "0.99.17"
serde = { version = "1.0.160", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion ella/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Add `ella` to your `Cargo.toml` file:

```toml
ella = "0.1.4"
ella = "0.1.5"
```

You may also want to install the [ella CLI tools](https://crates.io/crates/ella-cli/).
Expand Down
2 changes: 1 addition & 1 deletion ella/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//! Add `ella` to your `Cargo.toml` file:
//!
//! ```toml
//! ella = "0.1.4"
//! ella = "0.1.5"
//! ```
//!
//! You may also want to install the [ella CLI tools](https://crates.io/crates/ella-cli/).
Expand Down

0 comments on commit 28199d5

Please sign in to comment.