Skip to content

Commit 87948f9

Browse files
committed
ah - clean up + note about release schedule
1 parent 8970de4 commit 87948f9

File tree

1 file changed

+2
-29
lines changed

1 file changed

+2
-29
lines changed

blog/2024-11-12-nushell_0_100_0.md

Lines changed: 2 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -73,42 +73,15 @@ As part of this release, we also publish a set of optional plugins you can insta
7373
- [_Hall of fame_](#hall-of-fame-toc)
7474
- [_All breaking changes_](#all-breaking-changes-toc)
7575
- [_Full changelog_](#full-changelog-toc)
76-
<!-- TODO: please add links to the other sections here
77-
78-
the following command should help pre-generate a great deal of the table of content.
79-
be careful with the format and false-positives :wink:
80-
```nushell
81-
rg '^#+ ' blog/...
82-
| lines
83-
| each {
84-
str replace '# ' '- '
85-
| str replace --all '#' ' '
86-
| str replace --regex '- (.*)' '- [_$1_](#$1-toc)'
87-
}
88-
| to text
89-
```
90-
-->
9176

9277
# Highlights and themes of this release [[toc](#table-of-content)]
9378

94-
<!-- NOTE: if you wanna write a section about a breaking change, when it's a very important one,
95-
please add the following snippet to have a "warning" banner :)
96-
> see [an example](https://www.nushell.sh/blog/2023-09-19-nushell_0_85_0.html#pythonesque-operators-removal)
97-
98-
```md
99-
::: warning Breaking change
100-
See a full overview of the [breaking changes](#breaking-changes)
101-
:::
102-
```
103-
-->
104-
<!-- NOTE: see https://vuepress.github.io/reference/default-theme/markdown.html#custom-containers
105-
for the list of available *containers*
106-
-->
107-
10879
## Cheers to a century! [[toc](#table-of-content)]
10980

11081
We wish to express our heartfelt gratitude and congratulations to all of our contributors and users on releasing version 0.100.0! Thanks for sticking with us and making Nushell great. Here's to a hundred more! 🎉
11182

83+
After this release, we will be switching to a 6-week release schedule instead of our current 4-week one. This will allow us to focus more on making and merging changes, and giving major changes room to breathe.
84+
11285
## `like` and `not-like` operators [[toc](#table-of-content)]
11386

11487
With [#14072](https://github.com/nushell/nushell/pull/14072), this release adds two "new" operators: `like` and `not-like`. These operators are alternative forms of the preexisting `=~` and `!~` operators, respectively. The only reason to use one form over the other is preference. For example, people familiar with SQL may prefer using `like` and `not-like`. In the future, there is a chance that the shorter forms may be removed, but there are no plans to do so yet, if at all.

0 commit comments

Comments
 (0)