---
title: Nushell 0.4.0
author: Sophia Turner
author_site: https://twitter.com/sophiajturner
author_image: https://www.nushell.sh/blog/images/sophiajt.jpg
excerpt: Today we're happy to announce the 0.4.0 release of Nushell. The 0.4.0 marks a continually maturing shell that is now starting to show signs of stability. And, of course, a few fun features along the way.
---
# Nushell 0.4.0
Nushell, or Nu for short, is a new shell that takes a modern, structured approach to your commandline. It works seamlessly with the data from your filesystem, operating system, and a growing number of file formats to make it easy to build powerful commandline pipelines.
Today we're happy to announce the 0.4.0 release of Nushell. The [0.4.0 release](https://github.com/nushell/nushell/releases/tag/0.4.0) marks a continually maturing shell that is now starting to show signs of stability. And, of course, a few fun features along the way.
# Where to get it
Nu 0.4.0 is available as [pre-built binaries](https://github.com/nushell/nushell/releases/tag/0.4.0) or from [crates.io](https://crates.io/crates/nu). If you have Rust installed you can install it using `cargo +beta install nu` (or if you want all the features `cargo +beta install nu --all-features`).
# What's new
## New Colors (wycats)
New colors!
With 0.4.0, we're adding some new colors to show off different types of the command, where errors might be happening, and if the command is internal or external. The coloring is just the tip of the iceberg, as it were, and builds from a reworking of the parser to make it more accurate, more stable, and more feature-complete.
## Streaming table (sophiajt)