-
-
Notifications
You must be signed in to change notification settings - Fork 596
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Release v0.7.0 - Update all the crate versions - Update the demo gif - Write a changelog - Adjust the title of the search screen (has the old name still) - Adjust the colours of the quick-jump numbers (sadly invisible on some colour schemes as dark grey :/) * Update README, default config file, docs * Link usernames * Trigger release workflow upon release creation, as well as tags
- Loading branch information
Showing
12 changed files
with
90 additions
and
18 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
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,56 @@ | ||
# Changelog | ||
|
||
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 (mostly) adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.7.0] - 2021-05-10 | ||
|
||
Thank you so much to everyone that started contributing to Atuin for this release! | ||
|
||
- [@yuvipanda](https://github.com/yuvipanda) | ||
- [@Sciencentistguy](https://github.com/Sciencentistguy) | ||
- [@bl-ue](https://github.com/bl-ue) | ||
- [@ElvishJerricco](https://github.com/ElvishJerricco) | ||
- [@avinassh](https://github.com/avinassh) | ||
- [@ismith](https://github.com/ismith) | ||
- [@thedrow](https://github.com/thedrow) | ||
|
||
And a special thank you to [@conradludgate](https://github.com/conradludgate) for his ongoing contributions :) | ||
|
||
### Added | ||
|
||
- Ctrl-C to exit (#53) | ||
- Ctrl-D to exit (#65) | ||
- Add option to not automatically bind keys (#62) | ||
- Add importer for Resh history (#69) | ||
- Retain the query entered if no results are found (#76) | ||
- Support full-text querying (#75) | ||
- Allow listing or searching with only the command as output (#89) | ||
- Emacs-style ctrl-g, ctrl-n, ctrl-p (#77) | ||
- `atuin logout` (#91) | ||
- "quick access" to earlier commands via <kbd>Alt-N</kbd> (#79) | ||
|
||
### Changed | ||
|
||
- CI build caching (#49) | ||
- Use an enum for dialect (#80) | ||
- Generic importer trait (#71) | ||
- Increased optimisation for release builds (#101) | ||
- Shellcheck fixes for bash file (#81) | ||
- Some general cleanup, bugfixes, and refactoring (#83, #90, #48) | ||
|
||
### Deprecated | ||
|
||
### Removed | ||
|
||
### Fixed | ||
|
||
- Ubuntu install (#46) | ||
- Bash integration (#88) | ||
- Newline when editing shell RC files (#60) | ||
|
||
### Security |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "atuin" | ||
version = "0.6.4" | ||
version = "0.7.0" | ||
authors = ["Ellie Huxtable <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -29,9 +29,9 @@ atuin = { path = "/usr/bin/atuin" } | |
members = ["./atuin-client", "./atuin-server", "./atuin-common"] | ||
|
||
[dependencies] | ||
atuin-server = { path = "atuin-server", version = "0.6.2" } | ||
atuin-client = { path = "atuin-client", version = "0.6.2" } | ||
atuin-common = { path = "atuin-common", version = "0.6.2" } | ||
atuin-server = { path = "atuin-server", version = "0.7.0" } | ||
atuin-client = { path = "atuin-client", version = "0.7.0" } | ||
atuin-common = { path = "atuin-common", version = "0.7.0" } | ||
|
||
log = "0.4" | ||
pretty_env_logger = "0.4" | ||
|
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "atuin-client" | ||
version = "0.6.2" | ||
version = "0.7.0" | ||
authors = ["Ellie Huxtable <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -11,7 +11,7 @@ repository = "https://github.com/ellie/atuin" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
atuin-common = { path = "../atuin-common", version = "0.6.0" } | ||
atuin-common = { path = "../atuin-common", version = "0.7.0" } | ||
|
||
log = "0.4" | ||
fern = {version = "0.6.0", features = ["colored"] } | ||
|
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "atuin-common" | ||
version = "0.6.2" | ||
version = "0.7.0" | ||
authors = ["Ellie Huxtable <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "atuin-server" | ||
version = "0.6.2" | ||
version = "0.7.0" | ||
authors = ["Ellie Huxtable <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -9,7 +9,7 @@ homepage = "https://atuin.sh" | |
repository = "https://github.com/ellie/atuin" | ||
|
||
[dependencies] | ||
atuin-common = { path = "../atuin-common", version = "0.6.0" } | ||
atuin-common = { path = "../atuin-common", version = "0.7.0" } | ||
|
||
log = "0.4" | ||
fern = {version = "0.6.0", features = ["colored"] } | ||
|
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
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