Skip to content

Commit

Permalink
v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
princemaple authored Sep 27, 2023
1 parent 2679e6c commit a20037e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.4.0

`subgraph` now returns a DG struct, thanks @jdewar ! (#25)

## v0.3.0

Add loading from `:libgraph` `Graph`.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The package can be installed by adding `dg` to your list of dependencies in `mix
```elixir
def deps do
[
{:dg, "~> 0.3"},
{:dg, "~> 0.4"},
...
]
end
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ defmodule DG.MixProject do
use Mix.Project

@source_url "https://github.com/princemaple/dg"
@version "0.3.0"
@version "0.4.0"

def project do
[
app: :dg,
version: @version,
elixir: "~> 1.11",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs(),
Expand Down

0 comments on commit a20037e

Please sign in to comment.