Skip to content

Commit

Permalink
v0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ldltools committed Mar 30, 2019
1 parent ea737e9 commit 59d2b4c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
4 changes: 3 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v0.12.0rc
# v0.11.2 (2019-03-30)

- [dsl4sc] pack all ocaml modules into "Dsl4sc"
- [rules2scxml] SCXML event names can be overridden
Expand All @@ -7,6 +7,8 @@
(2dd2d3e)

## fixes
- [rulespp] recognize term variables in modal paths correctly.
(b098d28)
- [rulespp] recognize term variables in "preserve" rules correctly.
(39bcf14)
- [rules2ldl] p18n of _nat (n)_ where _n_ is not a power of 2.
Expand Down
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,15 @@ RUN apt-get update;\
apt-get install -y gawk;\
apt-get install -y graphviz xqilla libxml2-utils

# dsl4sc
WORKDIR /usr/local
COPY --from=builder /usr/local .
RUN ldconfig

# examples & tests
ADD examples /root/examples
ADD tests /root/tests
RUN apt-get install -y make gawk shelltestrunner

WORKDIR /root
CMD ["/bin/bash"]
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ This declares that, until the "_game_" event is emitted when the game is won,
either of the "_sharapova_" and "_williams_" events, indicating which player wins a point,
repeats 0 or more times.

Succeedingly, we add the following _property_ declaration that
Succeedingly, we add the following _property_ that defines
the players are initially at deuce and either will win the game in the end.

```
Expand Down Expand Up @@ -121,7 +121,6 @@ In addition to the tools listed above, you also need the following GNU tools:
and build with `MAKE=remake remake` instead of `make`

# Testing

- run: `make -C tests test`
run test cases using `rulessat`, `rulesmc`, and `rules2scxml`.
- run: `make -C tests scxml`
SCXML files will be generated from rules definitions and stored into `tests/out`
6 changes: 3 additions & 3 deletions src/rules/version.ml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
* limitations under the License.
*)

let get () = "0.12.0rc"
let get () = "0.11.2"

let get_major () = 0
let get_minor () = 12
let get_micro () = 0
let get_minor () = 11
let get_micro () = 2

0 comments on commit 59d2b4c

Please sign in to comment.