diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 88a73d41..2abebb70 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -3,7 +3,7 @@ name: Nightly artifacts on: push: branches: - - master + - main jobs: python_doc: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9436831c..b64a3fa6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -3,10 +3,10 @@ name: Change tests on: push: branches: - - master + - main pull_request: branches: - - master + - main schedule: - cron: "0 0 * * 0" diff --git a/js/Cargo.toml b/js/Cargo.toml index 2db682f5..2254c44d 100644 --- a/js/Cargo.toml +++ b/js/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Tpt "] 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" diff --git a/js/build_package.js b/js/build_package.js index 901a8a08..5ae96cb4 100644 --- a/js/build_package.js +++ b/js/build_package.js @@ -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' } diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 7cfa94b6..43ee4cc6 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -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 diff --git a/lib/oxrdf/Cargo.toml b/lib/oxrdf/Cargo.toml index 726032f5..b9924f94 100644 --- a/lib/oxrdf/Cargo.toml +++ b/lib/oxrdf/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Tpt "] 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 diff --git a/lib/sparesults/Cargo.toml b/lib/sparesults/Cargo.toml index 7549c56c..abe1321d 100644 --- a/lib/sparesults/Cargo.toml +++ b/lib/sparesults/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Tpt "] 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 diff --git a/lib/spargebra/Cargo.toml b/lib/spargebra/Cargo.toml index ec9bcf74..936f7076 100644 --- a/lib/spargebra/Cargo.toml +++ b/lib/spargebra/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Tpt "] 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 diff --git a/oxrocksdb-sys/Cargo.toml b/oxrocksdb-sys/Cargo.toml index a7a1d397..7e37759d 100644 --- a/oxrocksdb-sys/Cargo.toml +++ b/oxrocksdb-sys/Cargo.toml @@ -3,7 +3,7 @@ name = "oxrocksdb-sys" version = "0.3.0" authors = ["Tpt "] 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. diff --git a/python/Cargo.toml b/python/Cargo.toml index b4db6b2a..641a7b67 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -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" diff --git a/python/docs/index.rst b/python/docs/index.rst index b36178bd..107367d9 100644 --- a/python/docs/index.rst +++ b/python/docs/index.rst @@ -27,7 +27,7 @@ Pyoxigraph is `distributed on Pypi `_. There is also a small library providing a `rdflib `_ store using pyoxigraph: `oxrdflib `_. -Oxigraph and pyoxigraph source code are on `GitHub `_. +Oxigraph and pyoxigraph source code are on `GitHub `_. Installation diff --git a/python/pyproject.toml b/python/pyproject.toml index 5e8eb011..0cf9afee 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -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" diff --git a/server/Cargo.toml b/server/Cargo.toml index c6c107b2..c77bd712 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -4,7 +4,7 @@ version = "0.3.0" authors = ["Tpt "] 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