1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// git-bug-rs - A rust library for interfacing with git-bug repositories
//
// Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
// SPDX-License-Identifier: GPL-3.0-or-later
//
// This file is part of git-bug-rs/git-gub.
//
// You should have received a copy of the License along with this program.
// If not, see <https://www.gnu.org/licenses/agpl.txt>.
//! The timeline of an [`Snapshot`][`super::Snapshot`].
//!
//! This records changes to the Snapshot over time, in a abstract way (i.e.,
//! easier to access compared to the raw operations, but not enough data to
//! actually re-construct it.)
use crate;
/// A representation of the history of an issue.
///
/// This tracks all the changes, and can be used to access the final values of
/// an issue.