diff --git a/README.md b/README.md
index c05457c04..98596f451 100644
--- a/README.md
+++ b/README.md
@@ -110,7 +110,7 @@ Use `pgx.available_envs() -> Tuple[EnvId]` to see the list of currently availabl
| Game/EnvId | Visualization | Version | Five-word description by [ChatGPT](https://chat.openai.com/) |
|:---:|:---:|:---:|:---:|
|2048
`"2048"` || `v2` | *Merge tiles to create 2048.* |
-|Animal Shogi
`"animal_shogi"` || `v0` | *Animal-themed child-friendly shogi.* |
+|Animal Shogi
`"animal_shogi"` || `v1` | *Animal-themed child-friendly shogi.* |
|Backgammon
`"backgammon"` || `v2` | *Luck aids bearing off checkers.* |
|Bridge bidding
`"bridge_bidding"` || `v1` | *Partners exchange information via bids.* |
|Chess
`"chess"` || `v2` | *Checkmate opponent's king to win.* |
diff --git a/docs/animal_shogi.md b/docs/animal_shogi.md
index 2795bcd57..5e91adb7c 100644
--- a/docs/animal_shogi.md
+++ b/docs/animal_shogi.md
@@ -39,7 +39,7 @@ See also [Wikipedia](https://en.wikipedia.org/wiki/D%C5%8Dbutsu_sh%C5%8Dgi)
| Name | Value |
|:---|:----:|
-| Version | `v0` |
+| Version | `v1` |
| Number of players | `2` |
| Number of actions | `132` |
| Observation shape | `(4, 3, 194)` |
@@ -92,14 +92,17 @@ In cases 3 and 4, the game is declared a draw.
## Version History
+- `v1` : Fixed visualization [#1208](https://github.com/sotetsuk/pgx/pull/1208) and bug in Gold's move [#1209](https://github.com/sotetsuk/pgx/pull/1209) by [@KazukiOhta](https://github.com/KazukiOhta) (v2.2.0)
- `v0` : Initial release (v1.0.0)
-
## Baseline models
Pgx offers a baseline model for Animal Shogi. Users can use it for an anchor opponent in evaluation.
See [our paper](https://arxiv.org/abs/2303.17503) for more details. See [this colab](https://colab.research.google.com/github/sotetsuk/pgx/blob/main/colab/baselines.ipynb) for how to use it.
+> [!WARNING]
+> Curren latest model (`animal_shogi_v0`) is trained with `v0` environment. It may perform significantly worse in `v1` environment.
+
| Model ID | Description |
|:---:|:----|
| `animal_shogi_v0`| See [our paper](https://arxiv.org/abs/2303.17503) for the training details. |
\ No newline at end of file
diff --git a/pgx/animal_shogi.py b/pgx/animal_shogi.py
index eb43230e3..ea0af085c 100644
--- a/pgx/animal_shogi.py
+++ b/pgx/animal_shogi.py
@@ -146,7 +146,7 @@ def id(self) -> core.EnvId:
@property
def version(self) -> str:
- return "v0"
+ return "v1"
@property
def num_players(self) -> int: