Skip to content

Commit b80307b

Browse files
committed
0.0.2 release
1 parent 4621476 commit b80307b

7 files changed

Lines changed: 22 additions & 17 deletions

File tree

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
erlang 28.1
2-
elixir 1.18.4-otp-28
2+
elixir 1.19.4-otp-28

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,9 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
1414
## [v0.0.1](https://github.com/diffo-dev/diffo/compare/v0.0.1..v0.0.1) (2025-10-20)
1515

1616
### Features:
17-
* initial version
17+
* initial version
18+
19+
## [v0.0.2](https://github.com/diffo-dev/diffo/compare/v0.0.1..v0.0.2) (2025-12-01)
20+
21+
### Maintenance:
22+
* update to diffo 0.1.3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ by adding `diffo_example` to your list of dependencies in `mix.exs`:
2424
```elixir
2525
def deps do
2626
[
27-
{:diffo_example, "~> 0.0.1"}
27+
{:diffo_example, "~> 0.0.2"}
2828
]
2929
end
3030
```

mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ defmodule DiffoExample.MixProject do
66
@moduledoc false
77
use Mix.Project
88

9-
@version "0.0.1"
9+
@version "0.0.2"
1010
@name "DiffoExample"
1111
@description "Examples for Diffo TMF Service and Resource Manager"
1212
@github_url "https://github.com/diffo-dev/diffo-example"
@@ -78,7 +78,7 @@ defmodule DiffoExample.MixProject do
7878
# Run "mix help deps" to learn about dependencies.
7979
defp deps do
8080
[
81-
{:diffo, diffo_version("~> 0.1.2")},
81+
{:diffo, diffo_version("~> 0.1.3")},
8282
{:igniter, "~> 0.5", only: [:dev, :test]},
8383
{:ex_doc, "~> 0.37", only: [:dev, :test], runtime: false}
8484
]

mix.lock

Lines changed: 8 additions & 8 deletions
Large diffs are not rendered by default.

test/support/parties.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ defmodule DiffoExample.Test.Parties do
2525
%{uuid: instance.id},
2626
:PartyRef,
2727
%{uuid: actual_party_ref.id},
28-
:INVOLVED_WITH,
28+
:RELATES,
2929
:outgoing
3030
)
3131

@@ -34,7 +34,7 @@ defmodule DiffoExample.Test.Parties do
3434
%{uuid: actual_party_ref.id},
3535
:Party,
3636
%{key: actual_party_ref.party_id},
37-
:INVOLVED_WITH,
37+
:RELATES,
3838
:outgoing
3939
)
4040
end)

test/support/places.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ defmodule DiffoExample.Test.Places do
2525
%{uuid: instance.id},
2626
:PlaceRef,
2727
%{uuid: actual_place_ref.id},
28-
:LOCATED_BY,
28+
:RELATES,
2929
:outgoing
3030
)
3131

@@ -34,7 +34,7 @@ defmodule DiffoExample.Test.Places do
3434
%{uuid: actual_place_ref.id},
3535
:Place,
3636
%{key: actual_place_ref.place_id},
37-
:LOCATED_BY,
37+
:RELATES,
3838
:outgoing
3939
)
4040
end)

0 commit comments

Comments
 (0)