typr 0.4.14

A superset of the legendary R
# Change Cargo's version
let data_file = "configs/src/data.toml"
let new_version = (open $data_file | get release_version | $in + 1);
let updated_line = $"version = \"0.4.($new_version)\"";
sed -i $"3c\\($updated_line)" Cargo.toml

# for R runner
nu release.nu

# for Docker
cd ../docker
nu deploy.nu
cd ../app

# Save new Cargo's version
open $data_file | update release_version { $in + 1 } | to toml | save -f $data_file

# for Crate.io
git add .
git commit -m "update"
cargo publish
git add .
git commit -m $updated_line 
cargo publish