-
Notifications
You must be signed in to change notification settings - Fork 463
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Please add your new features and breaking changes to the release notes by opening PRs against the `release-notes-0.102.0` branch. ## TODO - [ ] look at interesting contributions - [ ] write all the sections - [ ] order the sections by interest - [ ] add the breaking changes - [ ] detail the breaking changes - [ ] add the full changelog - [ ] complete all the `TODO`s inside the release note - [ ] ... (PRs that need to land before the release, e.g. [deprecations](https://github.com/nushell/nushell/labels/deprecation) or [removals](https://github.com/nushell/nushell/pulls?q=is%3Apr+is%3Aopen+label%3Aremoval-after-deprecation))
- Loading branch information
Showing
1 changed file
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
--- | ||
title: Nushell 0.102.0 | ||
author: The Nu Authors | ||
author_site: https://twitter.com/nu_shell | ||
author_image: https://www.nushell.sh/blog/images/nu_logo.png | ||
excerpt: Today, we're releasing version 0.102.0 of Nu. This release adds... | ||
--- | ||
|
||
<!-- TODO: complete the excerpt above --> | ||
|
||
<!-- NOTE: start from the TODO all the way at the bottom (and sort of work your way up) --> | ||
|
||
# Nushell 0.102.0 | ||
|
||
<!-- TODO: write this excerpt --> | ||
|
||
Today, we're releasing version 0.102.0 of Nu. This release adds... | ||
|
||
# Where to get it | ||
|
||
Nu 0.102.0 is available as [pre-built binaries](https://github.com/nushell/nushell/releases/tag/0.102.0) or from [crates.io](https://crates.io/crates/nu). If you have Rust installed you can install it using `cargo install nu`. | ||
|
||
As part of this release, we also publish a set of optional plugins you can install and use with Nu. To install, use `cargo install nu_plugin_<plugin name>`. | ||
|
||
# Table of contents | ||
|
||
<!-- TODO: once all the content below is finished and committed, `use nu_scripts/make_release/release-note/notes.nu *` and run `write-toc $this_file`. --> | ||
|
||
# Highlights and themes of this release | ||
|
||
<!-- NOTE: if you wanna write a section about a breaking change, when it's a very important one, | ||
please add the following snippet to have a "warning" banner :) | ||
> see [an example](https://www.nushell.sh/blog/2023-09-19-nushell_0_85_0.html#pythonesque-operators-removal) | ||
```md | ||
::: warning Breaking change | ||
See a full overview of the [breaking changes](#breaking-changes) | ||
::: | ||
``` | ||
--> | ||
<!-- NOTE: see https://vuepress.github.io/reference/default-theme/markdown.html#custom-containers | ||
for the list of available *containers* | ||
--> | ||
|
||
# Changes | ||
|
||
## Additions | ||
|
||
## Breaking changes | ||
|
||
## Deprecations | ||
|
||
## Removals | ||
|
||
## Bug fixes and other changes | ||
|
||
# Notes for plugin developers | ||
|
||
# Hall of fame | ||
|
||
Thanks to all the contributors below for helping us solve issues, improve documentation, refactor code, and more! :pray: | ||
|
||
| author | title | link | | ||
| ------------------------------------ | ----- | ------------------------------------------------------- | | ||
| [@author](https://github.com/author) | ... | [#12345](https://github.com/nushell/nushell/pull/12345) | | ||
|
||
# Full changelog | ||
|
||
<!-- TODO: | ||
- `use nu_scripts/make_release/release-note/notes.nu *` | ||
- run `list-prs --milestone v0.102.0 | pr-table` | ||
- paste the output here | ||
Afterwards, go through each PR and classify it as one of the following: | ||
- A user-facing change. These PRs should go into the `# Changes` section. | ||
- A plugin-facing change. These PRs should go in `# Notes for plugin developers`. Some plugin-facing changes might also be a user-facing change and vice versa. | ||
- A documentation improvement, error message improvement, refactoring PR, clippy fix, typo fix, etc. These PRs go into the `# Hall of fame`. You can just copy the table row in this section and paste it to the `# Hall of fame` section above. Note that major refactorings may warrant a section in `# Highlights`. | ||
- Dependabot PRs and version bumps should be ignored. They will only be mentioned in `# Full changelog`. | ||
--> |