Skip to content

Commit

Permalink
Release v0.18.2 with a new lib target. (#377)
Browse files Browse the repository at this point in the history
  • Loading branch information
obi1kenobi authored Feb 21, 2023
1 parent 51803af commit 863f533
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-semver-checks"
version = "0.18.1"
version = "0.18.2"
edition = "2021"
authors = ["Predrag Gruevski <obi1kenobi82@gmail.com>"]
license = "Apache-2.0 OR MIT"
Expand Down
5 changes: 3 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ mod util;
use anyhow::Context;
use cargo_metadata::PackageId;
use clap::ValueEnum;
pub use config::*;
use directories::ProjectDirs;
pub use query::*;

use check_release::run_check_release;
use trustfall_rustdoc::{load_rustdoc, VersionedCrate};
Expand All @@ -26,6 +24,9 @@ use std::collections::HashSet;
use std::fs;
use std::path::{Path, PathBuf};

pub use config::GlobalConfig;
pub use query::{RequiredSemverUpdate, SemverQuery};

/// Test a release for semver violations.
#[non_exhaustive]
#[derive(Debug)]
Expand Down
1 change: 1 addition & 0 deletions src/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ use trustfall_core::ir::TransparentValue;

use crate::ReleaseType;

#[non_exhaustive]
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum RequiredSemverUpdate {
Major,
Expand Down

0 comments on commit 863f533

Please sign in to comment.