CHANGELOG: more precise description of mine()

This commit is contained in:
Emily Fox 2023-08-18 16:00:35 -05:00 committed by Emily Kyle Fox
parent 7837ec1f62
commit fde6e43aa8

View file

@ -76,13 +76,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* `jj split` will now leave the description empty on the second part if the * `jj split` will now leave the description empty on the second part if the
description was empty on the input commit. description was empty on the input commit.
* Revsets gained a new function `mine()` that aliases `author([your_email])`.
* `branches()`/`remote_branches()`/`author()`/`committer()`/`description()` * `branches()`/`remote_branches()`/`author()`/`committer()`/`description()`
revsets now support literal matching. For example, `branch(literal:main)` revsets now support literal matching. For example, `branch(literal:main)`
selects the branch named "main", but not "maint". `description(literal:"")` selects the branch named "main", but not "maint". `description(literal:"")`
selects commits whose description is empty. selects commits whose description is empty.
* Revsets gained a new function `mine()` that aliases `author([literal:"your_email"])`.
### Fixed bugs ### Fixed bugs
* `jj config set --user` and `jj config edit --user` can now be used outside of any repository. * `jj config set --user` and `jj config edit --user` can now be used outside of any repository.