Skip to content

Commit

Permalink
Release v0.2.0
Browse files Browse the repository at this point in the history
🗹 New shortcut syntax
🗹 New target transpilation
🗹 Integrate with others CLI
  • Loading branch information
DrSensor committed Jul 9, 2019
1 parent 0841f13 commit a30e10b
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 24 deletions.
18 changes: 9 additions & 9 deletions 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 Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ clean: _clean-analyze
cargo clean
pipenv clean

version_subjects := "Cargo.lock Dockerfile 'packages/**/Cargo.toml'"
version_subjects := "Cargo.lock '**Dockerfile' 'packages/**/Cargo.toml'"
# Prepare for release
release version:
#!/usr/bin/env bash
Expand Down
2 changes: 1 addition & 1 deletion docker/Alpine.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN /dist/smcat --version

FROM node:alpine

LABEL version="0.1.1" \
LABEL version="0.2.0" \
repository="https://github.com/drsensor/scdlang" \
homepage="https://drsensor.github.io/scdlang" \
maintainer="Fahmi Akbar Wildana <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion docker/Scratch.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM scratch

LABEL version="0.1.1" \
LABEL version="0.2.0" \
repository="https://github.com/drsensor/scdlang" \
homepage="https://drsensor.github.io/scdlang" \
maintainer="Fahmi Akbar Wildana <[email protected]>"
Expand Down
14 changes: 7 additions & 7 deletions packages/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s-crap"
version = "0.1.1"
version = "0.2.0"
description = "A CLI for working with Scdlang"
license = "UPL-1.0"
repository = "https://github.com/drsensor/scdlang"
Expand All @@ -21,9 +21,9 @@ doctest = false
doc = false

[dependencies]
scdlang = { path = "../core", version = "0.1.1" }
scdlang_xstate = { path = "../transpiler/xstate", version = "0.1.1" }
scdlang_smcat = { path = "../transpiler/smcat", version = "0.1.1" }
scdlang = { path = "../core", version = "0.2.0" }
scdlang_xstate = { path = "../transpiler/xstate", version = "0.2.0" }
scdlang_smcat = { path = "../transpiler/smcat", version = "0.2.0" }
atty = "0.2"
rustyline = "5"
prettyprint = "0.*"
Expand All @@ -38,9 +38,9 @@ features = ["wrap_help"]
# WARNING: This make compilation time doubled!! Seems cargo has serious issue here 😠
[build-dependencies]
clap = "2"
scdlang = { path = "../core", version = "0.1.1" }
scdlang_xstate = { path = "../transpiler/xstate", version = "0.1.1" }
scdlang_smcat = { path = "../transpiler/smcat", version = "0.1.1" }
scdlang = { path = "../core", version = "0.2.0" }
scdlang_xstate = { path = "../transpiler/xstate", version = "0.2.0" }
scdlang_smcat = { path = "../transpiler/smcat", version = "0.2.0" }
atty = "0.2"
rustyline = "5"
prettyprint = "0.*"
Expand Down
2 changes: 1 addition & 1 deletion packages/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scdlang"
version = "0.1.1"
version = "0.2.0"
description = "Core parser of Statecharts Description Languange"
license = "UPL-1.0"
repository = "https://github.com/drsensor/scdlang"
Expand Down
4 changes: 2 additions & 2 deletions packages/transpiler/smcat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scdlang_smcat"
version = "0.1.1"
version = "0.2.0"
description = "Scdlang parser for targeting AST of state-machine-cat"
license = "UPL-1.0"
repository = "https://github.com/drsensor/scdlang"
Expand All @@ -10,7 +10,7 @@ categories = ["parser-implementations"]
edition = "2018"

[dependencies]
scdlang = { path = "../../core", version = "0.1.1" }
scdlang = { path = "../../core", version = "0.2.0" }
serde_json = "1"
serde = { version = "1", features = ["derive"] }
serde_with = { version = "1", features = ["json"] }
Expand Down
4 changes: 2 additions & 2 deletions packages/transpiler/xstate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scdlang_xstate"
version = "0.1.1"
version = "0.2.0"
description = "Scdlang parser for targeting JavaScript library XState"
license = "UPL-1.0"
repository = "https://github.com/drsensor/scdlang"
Expand All @@ -10,7 +10,7 @@ categories = ["parser-implementations"]
edition = "2018"

[dependencies]
scdlang = { path = "../../core", version = "0.1.1" }
scdlang = { path = "../../core", version = "0.2.0" }
serde_json = "1"
serde = { version = "1", features = ["derive"] }
voca_rs = "1"
Expand Down

0 comments on commit a30e10b

Please sign in to comment.