a few more branch renames

(I accidentally had an extension filter on when I did the first pass, thx for catching)
encoder
Yuri Astrakhan 3 years ago committed by Thomas Tanon
parent 55550dc0d0
commit 80ec5035e8
  1. 2
      .github/workflows/artifacts.yml
  2. 4
      .github/workflows/tests.yml
  3. 2
      js/Cargo.toml
  4. 2
      js/build_package.js
  5. 2
      lib/Cargo.toml
  6. 2
      lib/oxrdf/Cargo.toml
  7. 2
      lib/sparesults/Cargo.toml
  8. 2
      lib/spargebra/Cargo.toml
  9. 2
      oxrocksdb-sys/Cargo.toml
  10. 2
      python/Cargo.toml
  11. 2
      python/docs/index.rst
  12. 4
      python/pyproject.toml
  13. 2
      server/Cargo.toml

@ -3,7 +3,7 @@ name: Nightly artifacts
on:
push:
branches:
- master
- main
jobs:
python_doc:

@ -3,10 +3,10 @@ name: Change tests
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main
schedule:
- cron: "0 0 * * 0"

@ -5,7 +5,7 @@ authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["RDF", "N-Triples", "Turtle", "RDF/XML", "SPARQL"]
repository = "https://github.com/oxigraph/oxigraph/tree/master/js"
repository = "https://github.com/oxigraph/oxigraph/tree/main/js"
description = "JavaScript bindings of Oxigraph"
edition = "2021"

@ -18,7 +18,7 @@ pkg.browser = 'web.js'
pkg.files = [
'*.{js,wasm,d.ts}'
]
pkg.homepage = 'https://github.com/oxigraph/oxigraph/tree/master/js'
pkg.homepage = 'https://github.com/oxigraph/oxigraph/tree/main/js'
pkg.bugs = {
url: 'https://github.com/oxigraph/oxigraph/issues'
}

@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["RDF", "SPARQL", "graph-database", "database"]
categories = ["database-implementations"]
repository = "https://github.com/oxigraph/oxigraph/tree/master/lib"
repository = "https://github.com/oxigraph/oxigraph/tree/main/lib"
homepage = "https://oxigraph.org/"
description = """
a SPARQL database and RDF toolkit

@ -5,7 +5,7 @@ authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["RDF"]
repository = "https://github.com/oxigraph/oxigraph/tree/master/lib/oxrdf"
repository = "https://github.com/oxigraph/oxigraph/tree/main/lib/oxrdf"
homepage = "https://oxigraph.org/"
description = """
A library providing basic data structures related to RDF

@ -5,7 +5,7 @@ authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["SPARQL"]
repository = "https://github.com/oxigraph/oxigraph/tree/master/lib/sparesults"
repository = "https://github.com/oxigraph/oxigraph/tree/main/lib/sparesults"
homepage = "https://oxigraph.org/"
description = """
SPARQL query results formats parsers and serializers

@ -5,7 +5,7 @@ authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["SPARQL"]
repository = "https://github.com/oxigraph/oxigraph/tree/master/lib/spargebra"
repository = "https://github.com/oxigraph/oxigraph/tree/main/lib/spargebra"
homepage = "https://oxigraph.org/"
description = """
A SPARQL parser

@ -3,7 +3,7 @@ name = "oxrocksdb-sys"
version = "0.3.0"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "GPL-2.0 OR Apache-2.0"
repository = "https://github.com/oxigraph/oxigraph/tree/master/oxrocksdb-sys"
repository = "https://github.com/oxigraph/oxigraph/tree/main/oxrocksdb-sys"
readme = "README.md"
description = """
Rust bindings for RocksDB for Oxigraph usage.

@ -5,7 +5,7 @@ authors = ["Tpt"]
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["RDF", "SPARQL", "graph-database", "database"]
repository = "https://github.com/oxigraph/oxigraph/tree/master/python"
repository = "https://github.com/oxigraph/oxigraph/tree/main/python"
homepage = "https://oxigraph.org/pyoxigraph/"
description = "Python bindings of Oxigraph, a SPARQL database and RDF toolkit"
edition = "2021"

@ -27,7 +27,7 @@ Pyoxigraph is `distributed on Pypi <https://pypi.org/project/pyoxigraph/>`_.
There is also a small library providing a `rdflib <https://rdflib.readthedocs.io>`_ store using pyoxigraph: `oxrdflib <https://github.com/oxigraph/oxrdflib>`_.
Oxigraph and pyoxigraph source code are on `GitHub <https://github.com/oxigraph/oxigraph/tree/master/python>`_.
Oxigraph and pyoxigraph source code are on `GitHub <https://github.com/oxigraph/oxigraph/tree/main/python>`_.
Installation

@ -22,8 +22,8 @@ classifiers = [
requires-python = ">=3.7"
[project.urls]
Changelog = "https://github.com/oxigraph/oxigraph/blob/master/CHANGELOG.md"
Changelog = "https://github.com/oxigraph/oxigraph/blob/main/CHANGELOG.md"
Documentation = "https://oxigraph.org/pyoxigraph/"
Homepage = "https://oxigraph.org/pyoxigraph/"
Source = "https://github.com/oxigraph/oxigraph/tree/master/python"
Source = "https://github.com/oxigraph/oxigraph/tree/main/python"
Tracker = "https://github.com/oxigraph/oxigraph/issues"

@ -4,7 +4,7 @@ version = "0.3.0"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/oxigraph/oxigraph/tree/master/server"
repository = "https://github.com/oxigraph/oxigraph/tree/main/server"
homepage = "https://oxigraph.org/server/"
description = """
Oxigraph SPARQL HTTP server

Loading…
Cancel
Save