mirror of
https://github.com/lsd-rs/lsd
synced 2024-12-14 14:12:31 +00:00
Release 1.14.0
This commit is contained in:
parent
3477b6e723
commit
d81a6f97c9
3 changed files with 15 additions and 3 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [0.14.0] - 2019-03-12
|
||||
### Added
|
||||
- Add the `-h` option for retro compatibility from [khross](https://github.com/khross)
|
||||
|
||||
### Changed
|
||||
- Update the format for the relative times from [meain](https://github.com/meain)
|
||||
|
||||
### Fixed
|
||||
- Fix the visible width calculation from [meain](https://github.com/meain)
|
||||
- Fix a panic une case of invalid modification time
|
||||
|
||||
## [0.13.0] - 2019-03-04
|
||||
### Added
|
||||
- Add some support for the LS_COLORS env variable from [meain](https://github.com/meain)
|
||||
|
@ -168,7 +179,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Change the component alignement by using term_grid
|
||||
|
||||
|
||||
[Unreleased]: https://github.com/Peltoche/lsd/compare/0.13.0...HEAD
|
||||
[Unreleased]: https://github.com/Peltoche/lsd/compare/0.14.0...HEAD
|
||||
[0.14.0]: https://github.com/Peltoche/lsd/compare/0.13.1...0.14.0
|
||||
[0.13.0]: https://github.com/Peltoche/lsd/compare/0.12.1...0.13.0
|
||||
[0.12.0]: https://github.com/Peltoche/lsd/compare/0.11.1...0.12.0
|
||||
[0.11.1]: https://github.com/Peltoche/lsd/compare/0.11.0...0.11.1
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -92,7 +92,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lsd"
|
||||
version = "0.13.0"
|
||||
version = "0.14.0"
|
||||
dependencies = [
|
||||
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"chrono-humanize 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
|
|
@ -8,7 +8,7 @@ license = "Apache-2.0"
|
|||
name = "lsd"
|
||||
readme = "./README.md"
|
||||
repository = "https://github.com/Peltoche/lsd"
|
||||
version = "0.13.0"
|
||||
version = "0.14.0"
|
||||
edition = "2018"
|
||||
|
||||
[[bin]]
|
||||
|
|
Loading…
Reference in a new issue