File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## v0.4.0
2
+
3
+ ` subgraph ` now returns a DG struct, thanks @jdewar ! (#25 )
4
+
1
5
## v0.3.0
2
6
3
7
Add loading from ` :libgraph ` ` Graph ` .
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ The package can be installed by adding `dg` to your list of dependencies in `mix
11
11
``` elixir
12
12
def deps do
13
13
[
14
- {:dg , " ~> 0.3 " },
14
+ {:dg , " ~> 0.4 " },
15
15
.. .
16
16
]
17
17
end
Original file line number Diff line number Diff line change @@ -2,13 +2,13 @@ defmodule DG.MixProject do
2
2
use Mix.Project
3
3
4
4
@ source_url "https://github.com/princemaple/dg"
5
- @ version "0.3 .0"
5
+ @ version "0.4 .0"
6
6
7
7
def project do
8
8
[
9
9
app: :dg ,
10
10
version: @ version ,
11
- elixir: "~> 1.11 " ,
11
+ elixir: "~> 1.12 " ,
12
12
start_permanent: Mix . env ( ) == :prod ,
13
13
deps: deps ( ) ,
14
14
docs: docs ( ) ,
You can’t perform that action at this time.
0 commit comments