Skip to content

Commit

Permalink
chore: Bump Rust crate versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kjvalencik committed Jul 1, 2022
1 parent 660c3d4 commit 9f018bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions crates/neon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ exclude = ["neon.jpg", "doc/**/*"]
edition = "2018"

[dev-dependencies]
semver = "0.9"
semver = "1"
psd = "0.3.1" # used for a doc example
anyhow = "1.0.58" # used for a doc example

Expand All @@ -21,7 +21,7 @@ nodejs-sys = "0.13.0"

[dependencies]
libloading = "0.7.3"
semver = "0.9.0"
semver = "1"
smallvec = "1.4.2"
once_cell = "1.10.0"
neon-macros = { version = "=0.10.1", path = "../neon-macros" }
Expand Down
4 changes: 2 additions & 2 deletions crates/neon/src/meta.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub fn version() -> Version {
major: MAJOR.parse().unwrap(),
minor: MINOR.parse().unwrap(),
patch: PATCH.parse().unwrap(),
pre: vec![],
build: vec![],
pre: Default::default(),
build: Default::default(),
}
}

0 comments on commit 9f018bd

Please sign in to comment.