From 8de87b5dcc0a14ad034408e49af6c4d3ac630f08 Mon Sep 17 00:00:00 2001 From: SatoshiTerasaki Date: Sun, 27 Mar 2022 14:58:16 +0900 Subject: [PATCH 1/3] prepare Release v0.4.2 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index d02f77b..66a4dad 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "Replay" uuid = "dd78c5bf-19c4-4e9c-96ce-c3ec745c7812" authors = ["Satoshi Terasaki and contributors"] -version = "0.4.1" +version = "0.4.2" [deps] Crayons = "a8cc5b0e-0ffa-5ad4-8c14-923d3ee1735f" From 4a9c0703c74c68d76066b285ba78f74e319bf486 Mon Sep 17 00:00:00 2001 From: SatoshiTerasaki Date: Sun, 27 Mar 2022 15:00:37 +0900 Subject: [PATCH 2/3] update examples --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6bfffdf..7f71e90 100644 --- a/README.md +++ b/README.md @@ -116,17 +116,18 @@ examples ├── sixel │   ├── Project.toml │   └── app.jl +├── unicodefun +│   ├── Project.toml +│   └── app.jl ├── unicodeplots │   ├── Project.toml │   └── app.jl ├── unicodeplots_animated │   ├── Project.toml -│   ├── app.jl -│   └── lemma.jl +│   └── app.jl └── use_ghostwriter └── app.jl -12 directories, 21 files ``` # Breaking Change From 4212d20f922849c9b58cc24ccaf74d121e077b28 Mon Sep 17 00:00:00 2001 From: SatoshiTerasaki Date: Sun, 27 Mar 2022 15:03:12 +0900 Subject: [PATCH 3/3] write restriction chapter --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 7f71e90..b0c10c3 100644 --- a/README.md +++ b/README.md @@ -135,6 +135,9 @@ examples - The internal logic of the program has been changed to stabilize its operation. As a side effect, we had to make some destructive changes to the API. - Note that `color` kwarg of `replay` is removed since `v0.4.x` . Use `cmd="--color=yes"` or `cmd="--color=no"` instead. +# Restriction + +- Replay.jl does not work on Windows. Please use WSL2 instead. # Acknowledgements