Skip to content

Commit

Permalink
version bump: 0.6.0
Browse files Browse the repository at this point in the history
Breaking changes since 0.5.0:
- `LispError` is now just `Error` and is no longer in the `prelude`
module.
- `LispResult` is now just `Result` and is no longer in the `prelude`
module.
- `SExp::make_symbol` has been shortened to `SExp::sym`.

New features since 0.5.0:
- `sexp!` macro for building SExps like a vector.
- `eval!` macro for less verbose evaluation.
  • Loading branch information
g-s-k committed Jan 9, 2019
1 parent 250bc24 commit b6fc8ff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ jobs:
- stage: test
script: cargo test --verbose
- stage: lint
before_script: rustup component add clippy-preview
before_script: rustup component add clippy
script: cargo clippy -- -D warnings
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parsley"
version = "0.5.0"
version = "0.6.0"
authors = ["George Kaplan <[email protected]>"]
edition = "2018"
description = "An implementation of Scheme"
Expand Down

0 comments on commit b6fc8ff

Please sign in to comment.