Skip to content
Snippets Groups Projects
Commit 35f94037 authored by STEVAN Antoine's avatar STEVAN Antoine :crab:
Browse files

bump to Nushell 0.95.0 (!149)

see the changelogs of
- [Nushell `0.94.0`](https://www.nushell.sh/blog/2024-05-28-nushell_0_94_0.html)
- [Nushell `0.94.1`](https://www.nushell.sh/blog/2024-05-30-nushell_0_94_1.html)
- [Nushell `0.94.2`](https://www.nushell.sh/blog/2024-06-03-nushell_0_94_2.html)

i also removed the `bytes encode` and `bytes decode` commands from `.nushell/binary.nu` because... well they did not work anymore and they were not used anywhere :eyes:
parent 75cba071
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ stages:
variables:
NUSHELL_ARCH: "x86_64-unknown-linux-musl"
NUSHELL_VERSION: "0.93.0"
NUSHELL_VERSION: "0.95.0"
workflow:
rules:
......
# decode a list of integer bytes into the underlying encoded string
export def "bytes decode" [encoding: string = "utf-8"]: list<int> -> string {
each { into binary | bytes at 0..1 } | bytes collect | decode $encoding
}
# encode an encoded string into the underlying list of integer bytes
export def "bytes encode" [encoding: string = "utf-8"]: string -> list<int> {
let bytes = $in | encode $encoding
seq 1 ($bytes | bytes length) | each {|i|
$bytes | bytes at ($i - 1)..($i) | into int
}
}
export def "bytes from_int" []: [int -> binary, list<int> -> binary] {
each { into binary --compact } | bytes collect
}
......
......@@ -13,7 +13,7 @@ below is an example of how to use the binary application with Nushell:
```
> **Note**
> requires Nushell 0.93.0 or later
> requires Nushell 0.95.0 or later
tests for the binary application can also be run with
```bash
......
......@@ -150,7 +150,7 @@ export def "komodo prove" [
}
let type = $fec_params | describe --detailed | update columns { sort }
let expected = { type: record, lazy: false, columns: { k: int, n: int } }
let expected = { type: record, columns: { k: int, n: int } }
if $type != $expected {
error make {
msg: $"(ansi red_bold)invalid `--fec-params`(ansi reset)",
......
use ../.nushell binary [
"bytes decode", "bytes encode", "bytes from_int", "bytes to_int"
]
use ../.nushell binary [ "bytes from_int", "bytes to_int" ]
use std assert
......@@ -18,8 +16,4 @@ def main [] {
let bytes = random-bytes 1_000
assert equal ($bytes | bytes from_int | bytes to_int) $bytes
const input = "hello world!"
assert equal ($input | bytes encode) $hello_world_int
assert equal ($input | bytes encode | bytes decode) $input
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment