Skip to content

Commit 0fb4a4f

Browse files
committed
chore: release version v0.1.2
1 parent 7f678c3 commit 0fb4a4f

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,23 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
1010

1111
<!-- changelog -->
1212

13+
## [v0.1.2](https://github.com/ash-project/crux/compare/v0.1.1...v0.1.2) (2025-10-18)
14+
15+
16+
17+
18+
### Improvements:
19+
20+
* Balance Formula in Expression Conversion (#7) by [@maennchen](https://github.com/maennchen) [(#7)](https://github.com/ash-project/crux/pull/7)
21+
22+
* Exhaustive Expression.expand/2 short-circuits (#5) by [@maennchen](https://github.com/maennchen) [(#5)](https://github.com/ash-project/crux/pull/5)
23+
24+
* enhance idempotent law to handle nested expressions (#6) by [@zachdaniel](https://github.com/zachdaniel) [(#6)](https://github.com/ash-project/crux/pull/6)
25+
26+
* Remove CommutativityLaw in Simplify (#4) by [@maennchen](https://github.com/maennchen) [(#4)](https://github.com/ash-project/crux/pull/4)
27+
28+
* Improve SAT Implementations in Testing (#3) by [@maennchen](https://github.com/maennchen) [(#3)](https://github.com/ash-project/crux/pull/3)
29+
1330
## [v0.1.1](https://github.com/ash-project/crux/compare/v0.1.0...v0.1.1) (2025-10-15)
1431

1532

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Add `crux` to your list of dependencies in `mix.exs`:
4242
```elixir
4343
def deps do
4444
[
45-
{:crux, "~> 0.1.1"},
45+
{:crux, "~> 0.1.2"},
4646
# Choose one SAT solver backend:
4747
{:picosat_elixir, "~> 0.2"}, # Recommended: Fast NIF-based solver
4848
# OR

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ defmodule Crux.MixProject do
1111
Library for boolean satisfiability solving and expression manipulation.
1212
"""
1313

14-
@version "0.1.1"
14+
@version "0.1.2"
1515

1616
def project do
1717
[

0 commit comments

Comments
 (0)