jj/lib
Stephen Jennings 6c41b1bef8 revset: add author_date and committer_date revset functions
Author dates and committer dates can be filtered like so:

    committer_date(before:"1 hour ago") # more than 1 hour ago
    committer_date(after:"1 hour ago")  # 1 hour ago or less

A date range can be created by combining revsets. For example, to see any
revisions committed yesterday:

    committer_date(after:"yesterday") & committer_date(before:"today")
2024-08-01 09:04:07 -07:00
..
benches
gen-protos Use { workspace = true } to appease VS Code's Cargo.toml parser 2023-08-22 21:38:53 -07:00
proc-macros cargo: explicitly indicate paths to publish 2024-04-15 20:37:00 -07:00
src revset: add author_date and committer_date revset functions 2024-08-01 09:04:07 -07:00
tests revset: add author_date and committer_date revset functions 2024-08-01 09:04:07 -07:00
testutils tests: make helpers create non-legacy trees 2024-07-24 14:33:05 +02:00
Cargo.toml revset: create DatePattern type 2024-08-01 09:04:07 -07:00
LICENSE cargo: add LICENSE file to each crate we publish 2023-09-22 21:48:28 -07:00