intelli-shell 3.4.0

Like IntelliSense, but for shells
1
2
3
4
5
6
7
8
9
10
11
12
13
use chrono::{DateTime, Utc};
use semver::Version;

/// Represents an intelli-shell release
#[derive(Debug, Clone)]
pub struct IntelliShellRelease {
    pub tag: String,
    pub version: Version,
    pub title: String,
    pub body: Option<String>,
    pub published_at: DateTime<Utc>,
    pub fetched_at: DateTime<Utc>,
}