Here is an example on how to download and compile from a Vala release tarball.
-In this example it is release version 0.48.19:
+In this example it is release version 0.48.25:
```sh
-curl --silent --show-error --location https://download.gnome.org/sources/vala/0.48/vala-0.48.19.tar.xz --output vala-bootstrap.tar.xz
+curl --silent --show-error --location https://download.gnome.org/sources/vala/0.48/vala-0.48.25.tar.xz --output vala-bootstrap.tar.xz
tar --extract --file vala-bootstrap.tar.xz
cd vala-bootstrap
./configure --prefix=/opt/vala-bootstrap
make && sudo make install
```
-If you wish to build a specific release, for example 0.54.1:
+If you wish to build a specific release, for example 0.56.17:
```sh
-git checkout 0.54.1
+git checkout 0.56.17
git clean -dfx
./autogen.sh
make && sudo make install