Update links to new repo URL under the rdf-elixir organization

This commit is contained in:
Marcel Otto 2020-06-01 17:52:01 +02:00
parent 23805fc340
commit fc726c248f
5 changed files with 14 additions and 14 deletions

View file

@ -9,7 +9,7 @@ This project adheres to [Semantic Versioning](http://semver.org/) and
This version just upgrades to RDF.ex 0.8. With that Elixir version < 1.8 are no longer supported.
[Compare v0.3.0...HEAD](https://github.com/marcelotto/rdf-ex/compare/v0.3.0...HEAD)
[Compare v0.3.0...HEAD](https://github.com/rdf-elixir/rdf-ex/compare/v0.3.0...HEAD)
@ -18,7 +18,7 @@ This version just upgrades to RDF.ex 0.8. With that Elixir version < 1.8 are no
No significant changes. Just some adoptions to work with RDF.ex 0.5.
But together with RDF.ex 0.5, Elixir versions < 1.6 are no longer supported.
[Compare v0.2.3...v0.3.0](https://github.com/marcelotto/jsonld-ex/compare/v0.2.3...v0.3.0)
[Compare v0.2.3...v0.3.0](https://github.com/rdf-elixir/jsonld-ex/compare/v0.2.3...v0.3.0)
@ -28,7 +28,7 @@ But together with RDF.ex 0.5, Elixir versions < 1.6 are no longer supported.
- Pass options to `JSON.LD.Encoder.encode/2` and `JSON.LD.Encoder.encode!/2`
through to Jason; this allows to use the new Jason pretty printing options
[Compare v0.2.2...v0.2.3](https://github.com/marcelotto/jsonld-ex/compare/v0.2.2...v0.2.3)
[Compare v0.2.2...v0.2.3](https://github.com/rdf-elixir/jsonld-ex/compare/v0.2.2...v0.2.3)
@ -43,7 +43,7 @@ But together with RDF.ex 0.5, Elixir versions < 1.6 are no longer supported.
- Use Jason instead of Poison for JSON encoding and decoding, since it's faster and more standard conform
[Compare v0.2.1...v0.2.2](https://github.com/marcelotto/jsonld-ex/compare/v0.2.1...v0.2.2)
[Compare v0.2.1...v0.2.2](https://github.com/rdf-elixir/jsonld-ex/compare/v0.2.1...v0.2.2)
@ -55,7 +55,7 @@ But together with RDF.ex 0.5, Elixir versions < 1.6 are no longer supported.
- Fixed all warnings ([@talklittle](https://github.com/talklittle))
[Compare v0.2.0...v0.2.1](https://github.com/marcelotto/jsonld-ex/compare/v0.2.0...v0.2.1)
[Compare v0.2.0...v0.2.1](https://github.com/rdf-elixir/jsonld-ex/compare/v0.2.0...v0.2.1)
@ -66,7 +66,7 @@ But together with RDF.ex 0.5, Elixir versions < 1.6 are no longer supported.
- Upgrade to RDF.ex 0.3.0
[Compare v0.1.1...v0.2.0](https://github.com/marcelotto/jsonld-ex/compare/v0.1.1...v0.2.0)
[Compare v0.1.1...v0.2.0](https://github.com/rdf-elixir/jsonld-ex/compare/v0.1.1...v0.2.0)
@ -77,7 +77,7 @@ But together with RDF.ex 0.5, Elixir versions < 1.6 are no longer supported.
- Don't support Elixir versions < 1.5, since `URI.merge` is broken in earlier versions
[Compare v0.1.0...v0.1.1](https://github.com/marcelotto/jsonld-ex/compare/v0.1.0...v0.1.1)
[Compare v0.1.0...v0.1.1](https://github.com/rdf-elixir/jsonld-ex/compare/v0.1.0...v0.1.1)

View file

@ -1,4 +1,4 @@
1. Fork it ( <https://github.com/marcelotto/jsonld-ex/fork> )
1. Fork it ( <https://github.com/rdf-elixir/jsonld-ex/fork> )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Make your changes, with new passing tests. Follow this [style guide].
4. Execute all tests.

View file

@ -2,9 +2,9 @@
# JSON-LD.ex
[![Travis](https://img.shields.io/travis/marcelotto/jsonld-ex.svg?style=flat-square)](https://travis-ci.org/marcelotto/jsonld-ex)
[![Travis](https://img.shields.io/travis/rdf-elixir/jsonld-ex.svg?style=flat-square)](https://travis-ci.org/rdf-elixir/jsonld-ex)
[![Hex.pm](https://img.shields.io/hexpm/v/json_ld.svg?style=flat-square)](https://hex.pm/packages/json_ld)
[![Coverage Status](https://coveralls.io/repos/github/marcelotto/jsonld-ex/badge.svg?branch=master)](https://coveralls.io/github/marcelotto/jsonld-ex?branch=master)
[![Coverage Status](https://coveralls.io/repos/github/rdf-elixir/jsonld-ex/badge.svg?branch=master)](https://coveralls.io/github/rdf-elixir/jsonld-ex?branch=master)
An implementation of the [JSON-LD] standard for Elixir and [RDF.ex].
@ -14,7 +14,7 @@ An implementation of the [JSON-LD] standard for Elixir and [RDF.ex].
- fully conforming JSON-LD API processor
- JSON-LD reader/writer for [RDF.ex]
- tests of the [JSON-LD test suite][] (see [here](https://github.com/marcelotto/jsonld-ex/wiki/JSON-LD.ex-implementation-report) for a detailed status report)
- tests of the [JSON-LD test suite][] (see [here](https://github.com/rdf-elixir/jsonld-ex/wiki/JSON-LD.ex-implementation-report) for a detailed status report)
## TODO

View file

@ -1,7 +1,7 @@
defmodule JSON.LD.Mixfile do
use Mix.Project
@repo_url "https://github.com/marcelotto/jsonld-ex"
@repo_url "https://github.com/rdf-elixir/jsonld-ex"
@version File.read!("VERSION") |> String.trim
@ -61,7 +61,7 @@ defmodule JSON.LD.Mixfile do
defp deps do
[
# {:rdf, "~> 0.8"},
{:rdf, github: "marcelotto/rdf-ex"},
{:rdf, github: "rdf-elixir/rdf-ex"},
{:jason, "~> 1.2"},
{:credo, "~> 1.4", only: [:dev, :test], runtime: false},

View file

@ -18,7 +18,7 @@
"nimble_parsec": {:hex, :nimble_parsec, "0.5.3", "def21c10a9ed70ce22754fdeea0810dafd53c2db3219a0cd54cf5526377af1c6", [:mix], [], "hexpm", "589b5af56f4afca65217a1f3eb3fee7e79b09c40c742fddc1c312b3ac0b3399f"},
"parse_trans": {:hex, :parse_trans, "3.3.0", "09765507a3c7590a784615cfd421d101aec25098d50b89d7aa1d66646bc571c1", [:rebar3], [], "hexpm", "17ef63abde837ad30680ea7f857dd9e7ced9476cdd7b0394432af4bfc241b960"},
"protocol_ex": {:hex, :protocol_ex, "0.4.3", "4acbe35da85109dc40315c1139bb7a65ebc7fc102d384cd8b3038384fbb9b282", [:mix], [], "hexpm", "6ca5ddb3505c9c86f17cd3f19838b34bf89966ae17078f79f81983b6a4391fe9"},
"rdf": {:git, "https://github.com/marcelotto/rdf-ex.git", "0ae2e6ededd46b13ba9f0fc9818a4fb176a4f8d7", []},
"rdf": {:git, "https://github.com/rdf-elixir/rdf-ex.git", "b82aeb67d2c573462fd44cb5aa0b8b78106ef92b", []},
"ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.6", "cf344f5692c82d2cd7554f5ec8fd961548d4fd09e7d22f5b62482e5aeaebd4b0", [:make, :mix, :rebar3], [], "hexpm", "bdb0d2471f453c88ff3908e7686f86f9be327d065cc1ec16fa4540197ea04680"},
"unicode_util_compat": {:hex, :unicode_util_compat, "0.5.0", "8516502659002cec19e244ebd90d312183064be95025a319a6c7e89f4bccd65b", [:rebar3], [], "hexpm", "d48d002e15f5cc105a696cf2f1bbb3fc72b4b770a184d8420c8db20da2674b38"},
}