Skip to content

Commit

Permalink
fix: rpm.changed()
Browse files Browse the repository at this point in the history
Bump anda 0.1.24 -> 0.1.25
Bump andax 0.1.9 -> 0.1.10
  • Loading branch information
madonuko committed Feb 18, 2024
1 parent c7ff3e2 commit 42fa426
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Cargo workspace
[package]
name = "anda"
version = "0.1.24"
version = "0.1.25"
edition = "2021"
description = "Andaman Build toolchain"
license = "MIT"
Expand All @@ -24,7 +24,7 @@ color-eyre = "0.6.2"
walkdir = "2.3.2"
tempfile = "3.4.0"
anda-config = { path = "./anda-config", version = "0.1.6" }
andax = { path = "./andax", version = "0.1" }
andax = { path = "./andax", version = "0.1.10" }
flatpak = "0.18.1"
clap_mangen = "0.2.9"
clap-verbosity-flag = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion andax/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "andax"
version = "0.1.9"
version = "0.1.10"
edition = "2021"
license = "MIT"
description = "Andaman scripting runtime"
Expand Down
2 changes: 1 addition & 1 deletion andax/src/fns/rpm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ impl RPMSpec {
/// Check if file has been changed
#[must_use]
pub fn changed(&self) -> bool {
self.f == self.original
self.f != self.original
}
}

Expand Down
2 changes: 1 addition & 1 deletion rust-anda-git.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

%global crate anda

%global _version 0.1.24
%global _version 0.1.25

Name: rust-anda
Version: %{_version}.%{autogitversion}
Expand Down
2 changes: 1 addition & 1 deletion rust-anda.spec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
%global crate anda

Name: rust-anda
Version: 0.1.24
Version: 0.1.25
Release: 1%{?dist}
Summary: Andaman Build toolchain

Expand Down

0 comments on commit 42fa426

Please sign in to comment.