diff --git a/make_release/bump-version.nu b/make_release/bump-version.nu index 6b5d4df5..1ea42c67 100755 --- a/make_release/bump-version.nu +++ b/make_release/bump-version.nu @@ -36,7 +36,10 @@ def main [ | save --force $file } - ["crates/nu_plugin_python/nu_plugin_python_example.py"] | each {|file| + [ + "crates/nu_plugin_python/nu_plugin_python_example.py" + "crates/nu_plugin_nu_example/nu_plugin_nu_example.nu" + ] | each {|file| log debug $"bumping ($file) from ($version) to ($new_version)" open --raw $file | str replace --all $'NUSHELL_VERSION = "($version)"' $'NUSHELL_VERSION = "($new_version)"'