From 519d74f7b2d143ad9bc39fd80715ee2eb4570d38 Mon Sep 17 00:00:00 2001 From: Tpt Date: Fri, 14 Aug 2020 12:08:35 +0200 Subject: [PATCH] Releases version 0.1.1 --- .github/workflows/release.yml | 3 +-- CHANGELOG.md | 7 +++++-- js/Cargo.toml | 2 +- lib/Cargo.toml | 2 +- python/Cargo.toml | 2 +- server/Cargo.toml | 2 +- testsuite/Cargo.toml | 4 ++-- wikibase/Cargo.toml | 2 +- 8 files changed, 13 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e082ab75..a17f2a59 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -55,7 +55,7 @@ jobs: with: user: __token__ password: ${{ secrets.PYPI_PASSWORD }} - working-directory: ./python + packages_dir: ./python/dist publish_npm: runs-on: ubuntu-latest steps: @@ -63,7 +63,6 @@ jobs: - uses: actions/setup-node@v1 with: node-version: '12' - working-directory: ./js - run: npm install working-directory: ./js - run: npm run build diff --git a/CHANGELOG.md b/CHANGELOG.md index 47ec5195..e18ef5db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,14 @@ -## Master +## [0.1.1] - 2020-08-14 + +### Added +- The `"sophia"` feature implementing the [`sophia_api`](https://docs.rs/sophia_api/) traits on Oxigraph terms and stores. +- Explicit types for quads iterators returned by stores. ### Changed - `QueryOptions::with_default_graph` now takes an `impl Into` instead of an `impl Into`. - `QueryOptions::with_named_graph` now takes an `impl Into` instead of an `impl Into`. - `pyoxigraph` `query` methods now takes two new parameters, `default_graph` and `named_graphs`. `default_graph_uris` and `named_graph_uris` parameters are deprecated. - Fixes a bug in `xsd:gYear` parsing. -- Adds explicit types for quads iterators returned by stores. ## [0.1.0] - 2020-08-09 diff --git a/js/Cargo.toml b/js/Cargo.toml index c8b68c12..a1e8caa9 100644 --- a/js/Cargo.toml +++ b/js/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_js" -version = "0.1.0" +version = "0.1.1" authors = ["Tpt "] license = "MIT/Apache-2.0" readme = "README.md" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index e2bb3f1f..31b04e58 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph" -version = "0.1.0" +version = "0.1.1" authors = ["Tpt "] license = "MIT/Apache-2.0" readme = "../README.md" diff --git a/python/Cargo.toml b/python/Cargo.toml index 4e6d47ee..0c403b5b 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyoxigraph" -version = "0.1.0" +version = "0.1.1" authors = ["Tpt"] license = "MIT/Apache-2.0" readme = "README.md" diff --git a/server/Cargo.toml b/server/Cargo.toml index 4a838115..dcb96835 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_server" -version = "0.1.0" +version = "0.1.1" authors = ["Tpt "] license = "MIT/Apache-2.0" readme = "../README.md" diff --git a/testsuite/Cargo.toml b/testsuite/Cargo.toml index 6525c454..84089768 100644 --- a/testsuite/Cargo.toml +++ b/testsuite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_testsuite" -version = "0.1.0" +version = "0.1.1" authors = ["Tpt "] license = "MIT/Apache-2.0" readme = "../README.md" @@ -14,7 +14,7 @@ publish = false [dependencies] anyhow = "1" chrono = "0.4" -oxigraph = { version = "0.1.0", path="../lib" } +oxigraph = { version = "0.1", path="../lib" } [dev-dependencies] criterion = "0.3" diff --git a/wikibase/Cargo.toml b/wikibase/Cargo.toml index d15cc6c0..059a1432 100644 --- a/wikibase/Cargo.toml +++ b/wikibase/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_wikibase" -version = "0.1.0" +version = "0.1.1" authors = ["Tpt "] license = "MIT/Apache-2.0" readme = "../README.md"