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

Commit 4e5c512

Browse files
committed
0.2.0
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.
1 parent 1ff37e1 commit 4e5c512

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

.ci/release.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
set -eu
3+
set -o pipefail
4+
(cd starlark && cargo package && cargo publish)
5+
(cd starlark-repl && cargo package && cargo publish)

starlark-repl/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starlark-repl"
3-
version = "0.2.0-pre"
3+
version = "0.2.0"
44
authors = ["Damien Martin-Guillerez <dmarting@google.com>"]
55

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

2626
[lib]
2727

starlark/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starlark"
3-
version = "0.2.0-pre"
3+
version = "0.2.0"
44
authors = ["Damien Martin-Guillerez <dmarting@google.com>"]
55
build = "build.rs"
66

0 commit comments

Comments
 (0)