Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: toml-rs/toml-test-rs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: toml-test-data-v1.13.0
Choose a base ref
...
head repository: toml-rs/toml-test-rs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: toml-test-data-v1.13.1
Choose a head ref
  • 6 commits
  • 6 files changed
  • 2 contributors

Commits on Mar 17, 2025

  1. chore: Be precise in versions

    epage committed Mar 17, 2025
    Copy the full SHA
    3e747f9 View commit details
  2. chore: Release

    epage committed Mar 17, 2025
    Copy the full SHA
    bfa2e2b View commit details
  3. chore: Release

    epage committed Mar 17, 2025
    Copy the full SHA
    8c1477c View commit details

Commits on Mar 18, 2025

  1. chore(deps): Update crates/data/assets/toml-test digest to 67c42de

    renovate[bot] authored Mar 18, 2025
    Copy the full SHA
    8ba947b View commit details
  2. Merge pull request #95 from toml-rs/renovate/crates-data-assets-toml-…

    …test-digest
    
    chore(deps): Update crates/data/assets/toml-test digest to 67c42de
    epage authored Mar 18, 2025
    Copy the full SHA
    204524c View commit details
  3. chore: Release

    epage committed Mar 18, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5a4c075 View commit details
Showing with 14 additions and 11 deletions.
  1. +4 −1 CHANGELOG.md
  2. +3 −3 Cargo.lock
  3. +2 −2 Cargo.toml
  4. +1 −1 crates/data/Cargo.toml
  5. +1 −1 crates/data/assets/toml-test
  6. +3 −3 crates/harness/Cargo.toml
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate

## [1.0.3] - 2025-03-17

## [1.0.2] - 2024-07-25

## [1.0.1] - 2024-05-15
@@ -76,7 +78,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [0.2.0] - 2021-08-16

<!-- next-url -->
[Unreleased]: https://github.com/epage/git-stack/compare/v1.0.2...HEAD
[Unreleased]: https://github.com/epage/git-stack/compare/v1.0.3...HEAD
[1.0.3]: https://github.com/epage/git-stack/compare/v1.0.2...v1.0.3
[1.0.2]: https://github.com/epage/git-stack/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/epage/git-stack/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/epage/git-stack/compare/v0.3.7...v1.0.0
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -91,7 +91,7 @@ zero_sized_map_values = "warn"

[package]
name = "toml-test"
version = "1.0.2"
version = "1.0.3"
description = "Verify Rust TOML parsers"
documentation = "http://docs.rs/toml-test"
readme = "README.md"
@@ -123,7 +123,7 @@ chrono = { version = "0.4.22", default-features = false, features = ["std"] }
ryu = "1.0.15"

[dev-dependencies]
toml-test-data = { version = "1", path = "crates/data" }
toml-test-data = { version = "1.13.1", path = "crates/data" }

[lints]
workspace = true
2 changes: 1 addition & 1 deletion crates/data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "toml-test-data"
version = "1.13.0"
version = "1.13.1"
description = "TOML test cases"
readme = "README.md"
categories = ["development-tools::testing", "text-processing", "encoding"]
2 changes: 1 addition & 1 deletion crates/data/assets/toml-test
6 changes: 3 additions & 3 deletions crates/harness/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "toml-test-harness"
version = "0.4.10"
version = "0.4.12"
description = "Cargo test harness for verifying TOML parsers"
readme = "README.md"
categories = ["development-tools::testing", "text-processing", "encoding"]
@@ -16,8 +16,8 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]

[dependencies]
toml-test-data = { version = "1.13.0", path = "../data" }
toml-test = { version = "^1.0.2", path = "../../" }
toml-test-data = { version = "1.13.1", path = "../data" }
toml-test = { version = "^1.0.3", path = "../../" }
ignore = "0.4.18"
libtest-mimic = "0.7.0"