Skip to content
This repository has been archived by the owner on Oct 14, 2021. It is now read-only.

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
Breaking changes:
  - Mutation during iteration are no longer allowed.
  - The REPL is in its own crate now.
  - string * bool are no longer allowed.
  - repr() now uses double quotes.
  • Loading branch information
damienmg committed Dec 28, 2018
1 parent 1ff37e1 commit 4e5c512
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .ci/release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
set -eu
set -o pipefail
(cd starlark && cargo package && cargo publish)
(cd starlark-repl && cargo package && cargo publish)
4 changes: 2 additions & 2 deletions starlark-repl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starlark-repl"
version = "0.2.0-pre"
version = "0.2.0"
authors = ["Damien Martin-Guillerez <[email protected]>"]

description = "A REPL for the implementation in Rust of the Starlark language."
Expand All @@ -21,7 +21,7 @@ codemap = "0.1.1"
codemap-diagnostic = "0.1"
getopts = "0.2"
linefeed = "0.5.3"
starlark = { path = "../starlark" }
starlark = { version = "0.2", path = "../starlark" }

[lib]

Expand Down
2 changes: 1 addition & 1 deletion starlark/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starlark"
version = "0.2.0-pre"
version = "0.2.0"
authors = ["Damien Martin-Guillerez <[email protected]>"]
build = "build.rs"

Expand Down

0 comments on commit 4e5c512

Please sign in to comment.