mirror of
https://github.com/Cian-H/dotfiles.git
synced 2026-05-02 20:31:43 +01:00
Changed . token to _dot
This change allows the dotfiles to work with chezmoi (e.g: on windows) and improves grepability with neovim/telescope
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
#!/usr/bin/env nu
|
||||
use std log
|
||||
|
||||
# bump the minor or patch version of the Nushell project
|
||||
def main [
|
||||
--patch # update the minor version instead of the minor
|
||||
]: nothing -> nothing {
|
||||
let version = open Cargo.toml
|
||||
| get package.version
|
||||
| parse "{major}.{minor}.{patch}"
|
||||
| into int major minor patch
|
||||
| into record
|
||||
|
||||
let new_version = if $patch {
|
||||
$version | update patch { $in + 1 }
|
||||
} else {
|
||||
$version | update minor { $in + 1 } | update patch { 0 }
|
||||
}
|
||||
|
||||
let version = $version | transpose | get column1 | str join "."
|
||||
let new_version = $new_version | transpose | get column1 | str join "."
|
||||
|
||||
log info $"bumping all packages and Nushell files in (open Cargo.toml | get package.name) from ($version) to ($new_version)"
|
||||
|
||||
ls **/Cargo.toml | each {|file|
|
||||
log debug $"bumping ($file.name) from ($version) to ($new_version)"
|
||||
open --raw $file.name
|
||||
| str replace --all $'version = "($version)"' $'version = "($new_version)"'
|
||||
| save --force $file.name
|
||||
}
|
||||
|
||||
"crates/nu-utils/src/sample_config/default_{config,env}.nu" | str expand | each {|file|
|
||||
log debug $"bumping ($file) from ($version) to ($new_version)"
|
||||
open --raw $file
|
||||
| str replace --all $'version = "($version)"' $'version = "($new_version)"'
|
||||
| save --force $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)"'
|
||||
| save --force $file
|
||||
}
|
||||
null
|
||||
}
|
||||
Reference in New Issue
Block a user