Skip to content

Commit

Permalink
Advance to version 1.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdaxymox committed Nov 11, 2023
1 parent 47641c7 commit 705f37f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,15 @@ Change log dates follow the ISO 8601 standard (YEAR-MONTH-DAY).

## [Unreleased]

## [1.0.0] - 2023-11-10

### Added
- Additional package information to `Cargo.toml` manifest.

## [0.2.0] - 2023-11-10

### Added
Initial full implementation of core comparison algorithms and all documentation
- Initial full implementation of core comparison algorithms and all documentation
for the library.

## [0.1.0] - 2023-10-21
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "approx_cmp"
version = "0.2.0"
version = "1.0.0"
edition = "2021"
authors = ["LambdaXymox <[email protected]>"]
description = "A library for doing approximate comparisons of finite precision numbers."
Expand Down Expand Up @@ -46,12 +46,12 @@ members = [

[dependencies.abs_diff_cmp]
path = "crates/abs_diff_cmp/"
version = "0.2.0"
version = "1.0.0"

[dependencies.relative_cmp]
path = "crates/relative_cmp/"
version = "0.2.0"
version = "1.0.0"

[dependencies.ulps_cmp]
path = "crates/ulps_cmp/"
version = "0.2.0"
version = "1.0.0"
2 changes: 1 addition & 1 deletion crates/abs_diff_cmp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "abs_diff_cmp"
version = "0.2.0"
version = "1.0.0"
edition = "2021"
authors = ["LambdaXymox <[email protected]>"]
description = "A library for doing approximate comparisons of finite precision numbers."
Expand Down
2 changes: 1 addition & 1 deletion crates/relative_cmp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "relative_cmp"
version = "0.2.0"
version = "1.0.0"
edition = "2021"
authors = ["LambdaXymox <[email protected]>"]
description = "A library for doing approximate comparisons of finite precision numbers."
Expand Down
2 changes: 1 addition & 1 deletion crates/ulps_cmp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ulps_cmp"
version = "0.2.0"
version = "1.0.0"
edition = "2021"
authors = ["LambdaXymox <[email protected]>"]
description = "A library for doing approximate comparisons of finite precision numbers."
Expand Down

0 comments on commit 705f37f

Please sign in to comment.