Skip to content

Commit

Permalink
(cargo-release) version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mwillsey committed Jul 16, 2020
1 parent c958df3 commit 489fa5d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

## [Unreleased] - ReleaseDate

## [0.6.0] - 2020-07-16

### Added
- `Id` is now a struct not a type alias. This should help prevent some bugs.
- `Runner` hooks allow you to modify the `Runner` each iteration and stop early if you want.
Expand Down Expand Up @@ -119,7 +121,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/mwillsey/egg/compare/v0.5.0...HEAD
[Unreleased]: https://github.com/mwillsey/egg/compare/v0.6.0...HEAD
[0.6.0]: https://github.com/mwillsey/egg/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/mwillsey/egg/compare/v0.4.1...v0.5.0
[0.4.1]: https://github.com/mwillsey/egg/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/mwillsey/egg/compare/v0.3.0...v0.4.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "egg"
version = "0.5.1-dev"
version = "0.6.0"
authors = ["Max Willsey <[email protected]>"]
edition = "2018"
description = "An implementation of egraphs"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Check out the [web demo](https://mwillsey.com/stuff/egg) for some quick egraph a
Add `egg` to your `Cargo.toml` like this:
```toml
[dependencies]
egg = "0.5.0"
egg = "0.6.0"
```

## Developing
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.5.0"
egg = "0.6.0"
```

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

0 comments on commit 489fa5d

Please sign in to comment.