Skip to content

Commit

Permalink
release 0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
oflatt committed Jun 29, 2023
1 parent a0055c5 commit c590048
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased] - ReleaseDate


## [0.9.5] - 2023-06-29
- Fixed a few edge cases in proof size optimization that caused egg to crash.

## [0.9.4] - 2023-05-23
- [#253] Improved rebuilding algorithm using a queue.
- [#259] Fixed another overflow bug in proof size optimization.
Expand Down Expand Up @@ -236,7 +240,8 @@ But hopefully things will be a little more stable from here on out
since the API is a lot nicer.

<!-- next-url -->
[Unreleased]: https://github.com/egraphs-good/egg/compare/v0.9.4...HEAD
[Unreleased]: https://github.com/egraphs-good/egg/compare/v0.9.5...HEAD
[0.9.5]: https://github.com/egraphs-good/egg/compare/v0.9.4...v0.9.5
[0.9.4]: https://github.com/egraphs-good/egg/compare/v0.9.3...v0.9.4
[0.9.3]: https://github.com/egraphs-good/egg/compare/v0.9.2...v0.9.3
[0.9.2]: https://github.com/egraphs-good/egg/compare/v0.9.1...v0.9.2
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT"
name = "egg"
readme = "README.md"
repository = "https://github.com/egraphs-good/egg"
version = "0.9.4"
version = "0.9.5"

[dependencies]
env_logger = {version = "0.9.0", default-features = false}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Check out the [web demo](https://egraphs-good.github.io/egg-web-demo) for some q
Add `egg` to your `Cargo.toml` like this:
```toml
[dependencies]
egg = "0.9.4"
egg = "0.9.5"
```

Make sure to compile with `--release` if you are measuring performance!
Expand Down
2 changes: 1 addition & 1 deletion src/tutorials/_02_getting_started.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ First,
Now we can add `egg` as a project dependency by adding a line to `Cargo.toml`:
```toml
[dependencies]
egg = "0.9.4"
egg = "0.9.5"
```

All of the code samples below work, but you'll have to `use` the relevant types.
Expand Down

0 comments on commit c590048

Please sign in to comment.