Navigation Menu

Skip to content

Commit

Permalink
[core] Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
anp committed Sep 27, 2020
1 parent 5351b18 commit 094a572
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 3 deletions.
77 changes: 75 additions & 2 deletions CHANGELOG.md
@@ -1,3 +1,76 @@
# `moxie` releases
# moxie

TODO link to other changelogs
moxie supports incremental "declarative" Rust code for interactive systems.
It comes with a lightweight event loop runtime that supports granular
reuse of arbitrary work, state change notifications, and async loaders.

<!-- categories: Added, Removed, Changed, Deprecated, Fixed, Security -->

## [0.3.0] - unreleased

### Added

- Support borrowed arguments to cache functions to avoid cloning on every revision.
- Common trait implementations for `Key`.
- Updated crate & module docs.

### Removed

- Futures loading is no longer feature flagged.
- moxie's cache (previously MemoStorage) is moved to dyn-cache, a new dependency.
- Built-in executor which was only used for testing.
- No longer depends on nightly Rust for `#[track_caller]` -- it's stabilized.
- `mox!` macro is now published separately.

### Changed

- "Memoization" renamed to "caching" in all APIs.
- `Runtime::run_once` allows passing an argument to the root function.
- `Runtime` no longer owns the root function.
- `embed` module renamed to `runtime`.
- State functions return a tuple `(Commit, Key)` instead of just a `Key`.

## [0.2.3] - 2019-12-27

### Fixed

- Incorrect version numbers which prevented 0.2.2 from working from crates.io.

## [0.2.2] - 2019-12-27

### Added

- Depends on nightly Rust for `#[track_caller]` feature.

### Changed

- Update to topo version that produces functions instead of macros from `#[topo::nested]`. No more
macros! Makes use of `#[track_caller]`.

## [0.2.1] - 2019-11-22

### Added

- Async executor integration w/ futures loading (`load`, `load_once`, ...). Under feature flag.
- `#![forbid(unsafe_code)]`
- `Runtime::run_once` returns the root closure's return value.
- `memo_with`, `once_with` functions that allows non-`Clone` types in storage
- `Key` tracks its callsite.
- `mox!` re-exported.

### Removed

- Attempts at memoizing all components.
- Unnecessary revision bookkeeping for state variables.

### Fixed

- Passing illicit env values to a root function.

## [0.1.1-alpha.0] - 2019-08-17

Initial release in support of moxie-dom.

## [0.1.0] - 2018-11-10

Initial name reservation.
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -2,7 +2,7 @@
//! interfaces.
//!
//! moxie supports incremental "declarative" Rust code for interactive systems.
//! It comes with a lightweight "event loop runtime" that supports granular
//! It comes with a lightweight event loop runtime that supports granular
//! reuse of arbitrary work, state change notifications, and async loaders.
//!
//! Most users of this crate will do so through a "moxie embedding" like
Expand Down

0 comments on commit 094a572

Please sign in to comment.