Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
erlang 28.1
elixir 1.18.4-otp-28
elixir 1.19.4-otp-28
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,9 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
## [v0.0.1](https://github.com/diffo-dev/diffo/compare/v0.0.1..v0.0.1) (2025-10-20)

### Features:
* initial version
* initial version

## [v0.0.2](https://github.com/diffo-dev/diffo/compare/v0.0.1..v0.0.2) (2025-12-01)

### Maintenance:
* update to diffo 0.1.3
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ by adding `diffo_example` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:diffo_example, "~> 0.0.1"}
{:diffo_example, "~> 0.0.2"}
]
end
```
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defmodule DiffoExample.MixProject do
@moduledoc false
use Mix.Project

@version "0.0.1"
@version "0.0.2"
@name "DiffoExample"
@description "Examples for Diffo TMF Service and Resource Manager"
@github_url "https://github.com/diffo-dev/diffo-example"
Expand Down Expand Up @@ -78,7 +78,7 @@ defmodule DiffoExample.MixProject do
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:diffo, diffo_version("~> 0.1.2")},
{:diffo, diffo_version("~> 0.1.3")},
{:igniter, "~> 0.5", only: [:dev, :test]},
{:ex_doc, "~> 0.37", only: [:dev, :test], runtime: false}
]
Expand Down
16 changes: 8 additions & 8 deletions mix.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions test/support/parties.ex
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ defmodule DiffoExample.Test.Parties do
%{uuid: instance.id},
:PartyRef,
%{uuid: actual_party_ref.id},
:INVOLVED_WITH,
:RELATES,
:outgoing
)

Expand All @@ -34,7 +34,7 @@ defmodule DiffoExample.Test.Parties do
%{uuid: actual_party_ref.id},
:Party,
%{key: actual_party_ref.party_id},
:INVOLVED_WITH,
:RELATES,
:outgoing
)
end)
Expand Down
4 changes: 2 additions & 2 deletions test/support/places.ex
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ defmodule DiffoExample.Test.Places do
%{uuid: instance.id},
:PlaceRef,
%{uuid: actual_place_ref.id},
:LOCATED_BY,
:RELATES,
:outgoing
)

Expand All @@ -34,7 +34,7 @@ defmodule DiffoExample.Test.Places do
%{uuid: actual_place_ref.id},
:Place,
%{key: actual_place_ref.place_id},
:LOCATED_BY,
:RELATES,
:outgoing
)
end)
Expand Down