From fde6e43aa81b5ac784a02ff758b53f2eb016924f Mon Sep 17 00:00:00 2001 From: Emily Fox Date: Fri, 18 Aug 2023 16:00:35 -0500 Subject: [PATCH] CHANGELOG: more precise description of `mine()` --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05d51f911..22da5bb60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 description was empty on the input commit. -* Revsets gained a new function `mine()` that aliases `author([your_email])`. - * `branches()`/`remote_branches()`/`author()`/`committer()`/`description()` revsets now support literal matching. For example, `branch(literal:main)` selects the branch named "main", but not "maint". `description(literal:"")` selects commits whose description is empty. +* Revsets gained a new function `mine()` that aliases `author([literal:"your_email"])`. + ### Fixed bugs * `jj config set --user` and `jj config edit --user` can now be used outside of any repository.