Skip to content

Commit a30e10b

Browse files
committed
Release v0.2.0
🗹 New shortcut syntax 🗹 New target transpilation 🗹 Integrate with others CLI
1 parent 0841f13 commit a30e10b

File tree

8 files changed

+24
-24
lines changed

8 files changed

+24
-24
lines changed

Cargo.lock

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Justfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ clean: _clean-analyze
4343
cargo clean
4444
pipenv clean
4545

46-
version_subjects := "Cargo.lock Dockerfile 'packages/**/Cargo.toml'"
46+
version_subjects := "Cargo.lock '**Dockerfile' 'packages/**/Cargo.toml'"
4747
# Prepare for release
4848
release version:
4949
#!/usr/bin/env bash

docker/Alpine.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN /dist/smcat --version
3232

3333
FROM node:alpine
3434

35-
LABEL version="0.1.1" \
35+
LABEL version="0.2.0" \
3636
repository="https://github.com/drsensor/scdlang" \
3737
homepage="https://drsensor.github.io/scdlang" \
3838
maintainer="Fahmi Akbar Wildana <sensorfied@gmail.com>"

docker/Scratch.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM scratch
22

3-
LABEL version="0.1.1" \
3+
LABEL version="0.2.0" \
44
repository="https://github.com/drsensor/scdlang" \
55
homepage="https://drsensor.github.io/scdlang" \
66
maintainer="Fahmi Akbar Wildana <sensorfied@gmail.com>"

packages/cli/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s-crap"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
description = "A CLI for working with Scdlang"
55
license = "UPL-1.0"
66
repository = "https://github.com/drsensor/scdlang"
@@ -21,9 +21,9 @@ doctest = false
2121
doc = false
2222

2323
[dependencies]
24-
scdlang = { path = "../core", version = "0.1.1" }
25-
scdlang_xstate = { path = "../transpiler/xstate", version = "0.1.1" }
26-
scdlang_smcat = { path = "../transpiler/smcat", version = "0.1.1" }
24+
scdlang = { path = "../core", version = "0.2.0" }
25+
scdlang_xstate = { path = "../transpiler/xstate", version = "0.2.0" }
26+
scdlang_smcat = { path = "../transpiler/smcat", version = "0.2.0" }
2727
atty = "0.2"
2828
rustyline = "5"
2929
prettyprint = "0.*"
@@ -38,9 +38,9 @@ features = ["wrap_help"]
3838
# WARNING: This make compilation time doubled!! Seems cargo has serious issue here 😠
3939
[build-dependencies]
4040
clap = "2"
41-
scdlang = { path = "../core", version = "0.1.1" }
42-
scdlang_xstate = { path = "../transpiler/xstate", version = "0.1.1" }
43-
scdlang_smcat = { path = "../transpiler/smcat", version = "0.1.1" }
41+
scdlang = { path = "../core", version = "0.2.0" }
42+
scdlang_xstate = { path = "../transpiler/xstate", version = "0.2.0" }
43+
scdlang_smcat = { path = "../transpiler/smcat", version = "0.2.0" }
4444
atty = "0.2"
4545
rustyline = "5"
4646
prettyprint = "0.*"

packages/core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scdlang"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
description = "Core parser of Statecharts Description Languange"
55
license = "UPL-1.0"
66
repository = "https://github.com/drsensor/scdlang"

packages/transpiler/smcat/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scdlang_smcat"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
description = "Scdlang parser for targeting AST of state-machine-cat"
55
license = "UPL-1.0"
66
repository = "https://github.com/drsensor/scdlang"
@@ -10,7 +10,7 @@ categories = ["parser-implementations"]
1010
edition = "2018"
1111

1212
[dependencies]
13-
scdlang = { path = "../../core", version = "0.1.1" }
13+
scdlang = { path = "../../core", version = "0.2.0" }
1414
serde_json = "1"
1515
serde = { version = "1", features = ["derive"] }
1616
serde_with = { version = "1", features = ["json"] }

packages/transpiler/xstate/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scdlang_xstate"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
description = "Scdlang parser for targeting JavaScript library XState"
55
license = "UPL-1.0"
66
repository = "https://github.com/drsensor/scdlang"
@@ -10,7 +10,7 @@ categories = ["parser-implementations"]
1010
edition = "2018"
1111

1212
[dependencies]
13-
scdlang = { path = "../../core", version = "0.1.1" }
13+
scdlang = { path = "../../core", version = "0.2.0" }
1414
serde_json = "1"
1515
serde = { version = "1", features = ["derive"] }
1616
voca_rs = "1"

0 commit comments

Comments
 (0)