yolop 0.8.0

Yolop — a terminal coding agent built on everruns-runtime
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub const VERSION_DETAILS: &str = concat!(
    env!("CARGO_PKG_VERSION"),
    " (commit ",
    env!("YOLOP_GIT_SHA"),
    ", everruns-runtime ",
    env!("YOLOP_EVERRUNS_RUNTIME_VERSION"),
    ")"
);

pub const VERSION_LINE: &str = concat!(
    "yolop ",
    env!("CARGO_PKG_VERSION"),
    " (commit ",
    env!("YOLOP_GIT_SHA"),
    ", everruns-runtime ",
    env!("YOLOP_EVERRUNS_RUNTIME_VERSION"),
    ")"
);