From 8602167791060ca3a8ba292c71ec963467830f38 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 23 Jul 2021 03:01:59 +0000 Subject: [PATCH 1/2] Update sophia_api requirement from 0.6 to 0.7 Updates the requirements on [sophia_api](https://github.com/pchampin/sophia_rs) to permit the latest version. - [Release notes](https://github.com/pchampin/sophia_rs/releases) - [Changelog](https://github.com/pchampin/sophia_rs/blob/main/CHANGELOG.txt) - [Commits](https://github.com/pchampin/sophia_rs/compare/v0.6.0...v0.7.0) --- updated-dependencies: - dependency-name: sophia_api dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- api/Cargo.toml | 2 +- turtle/Cargo.toml | 4 ++-- xml/Cargo.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/api/Cargo.toml b/api/Cargo.toml index ad1c3c9..d10f0d5 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -20,4 +20,4 @@ generalized = [] sophia = ["sophia_api"] [dependencies] -sophia_api = { version = "0.6", optional = true } +sophia_api = { version = "0.7", optional = true } diff --git a/turtle/Cargo.toml b/turtle/Cargo.toml index 4431489..9be9f22 100644 --- a/turtle/Cargo.toml +++ b/turtle/Cargo.toml @@ -23,8 +23,8 @@ sophia = ["rio_api/sophia", "sophia_api"] oxilangtag = "0.1" oxiri = "0.1" rio_api = { version = "0.6", path="../api" } -sophia_api = { version = "0.6", optional = true } +sophia_api = { version = "0.7", optional = true } [dev-dependencies] -sophia_api = { version = "0.6", features = ["test_macro"] } +sophia_api = { version = "0.7", features = ["test_macro"] } diff --git a/xml/Cargo.toml b/xml/Cargo.toml index ecdbae2..426c50e 100644 --- a/xml/Cargo.toml +++ b/xml/Cargo.toml @@ -23,7 +23,7 @@ oxilangtag = "0.1" oxiri = "0.1" rio_api = { version = "0.6", path="../api" } quick-xml = "0.22" -sophia_api = { version = "0.6", optional = true } +sophia_api = { version = "0.7", optional = true } [dev-dependencies] -sophia_api = { version = "0.6", features = ["test_macro"] } +sophia_api = { version = "0.7", features = ["test_macro"] } From fa2c140ed057c5da375f5631f886ff1806d36d3b Mon Sep 17 00:00:00 2001 From: Tpt Date: Sat, 24 Jul 2021 15:47:41 +0200 Subject: [PATCH 2/2] Allows both Sophia 0.6 and 0.7 --- api/Cargo.toml | 2 +- turtle/Cargo.toml | 4 ++-- xml/Cargo.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/api/Cargo.toml b/api/Cargo.toml index d10f0d5..9a198cc 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -20,4 +20,4 @@ generalized = [] sophia = ["sophia_api"] [dependencies] -sophia_api = { version = "0.7", optional = true } +sophia_api = { version = ">=0.6,<=0.7", optional = true } diff --git a/turtle/Cargo.toml b/turtle/Cargo.toml index 9be9f22..978737f 100644 --- a/turtle/Cargo.toml +++ b/turtle/Cargo.toml @@ -23,8 +23,8 @@ sophia = ["rio_api/sophia", "sophia_api"] oxilangtag = "0.1" oxiri = "0.1" rio_api = { version = "0.6", path="../api" } -sophia_api = { version = "0.7", optional = true } +sophia_api = { version = ">=0.6,<=0.7", optional = true } [dev-dependencies] -sophia_api = { version = "0.7", features = ["test_macro"] } +sophia_api = { version = ">=0.6,<=0.7", features = ["test_macro"] } diff --git a/xml/Cargo.toml b/xml/Cargo.toml index 426c50e..0eefb5b 100644 --- a/xml/Cargo.toml +++ b/xml/Cargo.toml @@ -23,7 +23,7 @@ oxilangtag = "0.1" oxiri = "0.1" rio_api = { version = "0.6", path="../api" } quick-xml = "0.22" -sophia_api = { version = "0.7", optional = true } +sophia_api = { version = ">=0.6,<=0.7", optional = true } [dev-dependencies] -sophia_api = { version = "0.7", features = ["test_macro"] } +sophia_api = { version = ">=0.6,<=0.7", features = ["test_macro"] }