Skip to content

Commit b90c260

Browse files
committed
Bump version
1 parent 50b5847 commit b90c260

File tree

6 files changed

+13
-10
lines changed

6 files changed

+13
-10
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rfd-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rfd-api"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2021"
55
repository = "https://github.com/oxidecomputer/rfd-api"
66

rfd-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rfd-cli"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

rfd-processor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rfd-processor"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

rfd-processor/src/scanner.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use diesel::result::{Error as DieselError, DatabaseErrorKind};
1+
use diesel::result::{DatabaseErrorKind, Error as DieselError};
22
use rfd_model::{
33
storage::{JobStore, StoreError},
44
NewJob,
@@ -36,7 +36,10 @@ pub async fn scanner(ctx: Arc<Context>) -> Result<(), ScannerError> {
3636
Ok(job) => tracing::trace!(?job.id, "Added job to the queue"),
3737
Err(err) => {
3838
match err {
39-
StoreError::Db(DieselError::DatabaseError(DatabaseErrorKind::UniqueViolation, _)) => {
39+
StoreError::Db(DieselError::DatabaseError(
40+
DatabaseErrorKind::UniqueViolation,
41+
_,
42+
)) => {
4043
// Nothing to do here, we expect uniqueness conflicts. It is expected
4144
// that the scanner picks ups redundant jobs for RFDs that have not
4245
// changed since the last scan

rfd-redirect/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rfd-redirect"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

0 commit comments

Comments
 (0)