Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog

## [0.2.0] - 2026-04-15

### Added
- Add Solve-style controller `handle_info` fallback for non-Solve messages.
- Allow controller `handle_info` arities from `/2` through `/5`, with access to state, dependencies, callbacks, and init params.
- Document controller `handle_info` usage in the README and module docs.

### Changed
- Keep Solve internal messages reserved from controller-defined `handle_info` clauses.
- Validate controller `handle_info` arity at compile time.

## [0.1.0] - 2026-04-08

### Added
- Initial release.
5 changes: 4 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Solve.MixProject do
use Mix.Project

@description "Declarative UI agnostic state management architecture"
@version "0.1.0"
@version "0.2.0"
@source_url "https://github.com/emerge-elixir/solve"

def project do
Expand Down Expand Up @@ -80,6 +80,7 @@ defmodule Solve.MixProject do
},
files: [
"lib",
"CHANGELOG.md",
"README.md",
"ARCHITECTURE.md",
"LICENSE",
Expand All @@ -94,10 +95,12 @@ defmodule Solve.MixProject do
main: "readme",
source_ref: "v#{@version}",
extras: [
"CHANGELOG.md",
"README.md",
"ARCHITECTURE.md"
],
groups_for_extras: [
Release: ["CHANGELOG.md"],
Internals: ["ARCHITECTURE.md"]
],
groups_for_modules: [
Expand Down