Skip to content

Commit

Permalink
Update semver 0.9 -> 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aschampion committed Dec 6, 2022
1 parent e718c43 commit 8483798
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- The filesystem backend now returns platform correct `\`-separated URIs on Windows.
- Increase MSRV 1.39 -> 1.56 for tool and dependency upgrades.
- Updated `ndarray` from 0.13 to 0.15.
- Updated `semver` from 0.9 to 1.0.

## [0.7.6] - 2020-10-26
### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ xz = ["xz2"]

[dependencies]
byteorder = "1.3.4"
semver = "0.9"
semver = "1"
serde_json = "1.0.39"

bzip2 = { version = "0.4", optional = true }
Expand Down
8 changes: 1 addition & 7 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,7 @@ pub type GridCoord = CoordVec<u64>;
type N5Endian = BigEndian;

/// Version of the Java N5 spec supported by this library.
pub const VERSION: Version = Version {
major: 2,
minor: 1,
patch: 3,
pre: Vec::new(),
build: Vec::new(),
};
pub const VERSION: Version = Version::new(2, 1, 3);

/// Determines whether a version of an N5 implementation is capable of accessing
/// a version of an N5 container (`other`).
Expand Down

0 comments on commit 8483798

Please sign in to comment.