Skip to content

Commit

Permalink
0.4.0-rc.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Kampfkarren committed Oct 4, 2019
1 parent 6ee6843 commit 799f1e4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
**/target
**/*.rs.bk
**/*.rs.bk
Cargo.lock
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added `Return` and `visit_return`
- Added `Expression::Parentheses`
- Added `Owned` trait to get a `'static` lifetime version of nodes
- Added `visit_XXX_end` methods for when completing a visit on a node

### Changed
- Fields of `Token` and `Position` have been made private with public accessors
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "full_moon"
version = "0.4.0-rc.6"
version = "0.4.0-rc.7"
authors = ["Kampfkarren <[email protected]>"]
description = "A lossless Lua 5.1 parser"
license = "MPL-2.0"
Expand All @@ -18,7 +18,7 @@ no-source-tests = []
atomic_refcell = "0.1"
bytecount = "0.5"
crossbeam-utils = "0.6"
full_moon_derive = { path = "./full-moon-derive", version = "0.2.0" }
full_moon_derive = { path = "./full-moon-derive", version = "0.3.0" }
generational-arena = "0.2"
itertools = "0.8"
lazy_static = "1.3"
Expand Down
2 changes: 1 addition & 1 deletion full-moon-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "full_moon_derive"
version = "0.2.0"
version = "0.3.0"
authors = ["Kampfkarren <[email protected]>"]
description = "Internally used for the full_moon project. Do not use."
license = "MPL-2.0"
Expand Down

0 comments on commit 799f1e4

Please sign in to comment.