Skip to content

Commit

Permalink
add a few fixes for the release note of 0.86.0 (#1115)
Browse files Browse the repository at this point in the history
* remove the useless note

* use real Nushell code blocks

* remove paths to personal directories
  • Loading branch information
amtoine authored Nov 11, 2023
1 parent 1baa661 commit 8fbadc1
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions blog/2023-10-17-nushell_0_86.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,11 +176,6 @@ compiled artifact.

![Animation showing shorthand directory expansion](../assets/images/0_86_completions.gif)

> :bulb: **Note**
> please have a look at
> [this comment on GitHub](https://github.com/nushell/nushell/issues/10543#issuecomment-1740451687)
> for a preview of this feature.
::: warning Breaking change
See a full overview of the [breaking changes](#breaking-changes)
:::
Expand Down Expand Up @@ -478,14 +473,14 @@ In 0.86, we now differentiate between a switch `--x` and a flag with a boolean a

## Before

```
G:/Dev/nu-itself/nushell> [UserID ABCdefGHI foo123bar] | str camel-case
```nushell
> [UserID ABCdefGHI foo123bar] | str camel-case
╭───┬───────────╮
│ 0 │ userID │
│ 1 │ abcdefGHI │
│ 2 │ foo123Bar │
╰───┴───────────╯
G:/Dev/nu-itself/nushell> [UserID ABCdefGHI foo123bar] | str snake-case
> [UserID ABCdefGHI foo123bar] | str snake-case
╭───┬─────────────╮
│ 0 │ user_id │
│ 1 │ ab_cdef_ghi │
Expand All @@ -495,14 +490,14 @@ G:/Dev/nu-itself/nushell> [UserID ABCdefGHI foo123bar] | str snake-case

## After

```
G:/Dev/nu-itself/nushell> [UserID ABCdefGHI foo123bar] | str camel-case
```nushell
> [UserID ABCdefGHI foo123bar] | str camel-case
╭───┬───────────╮
│ 0 │ userId │
│ 1 │ abCdefGhi │
│ 2 │ foo123bar │
╰───┴───────────╯
G:/Dev/nu-itself/nushell> [UserID ABCdefGHI foo123bar] | str snake-case
> [UserID ABCdefGHI foo123bar] | str snake-case
╭───┬─────────────╮
│ 0 │ user_id │
│ 1 │ ab_cdef_ghi │
Expand Down

0 comments on commit 8fbadc1

Please sign in to comment.