Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
crbelaus committed Apr 30, 2024
1 parent b1fbb0f commit 352eff5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ in dev:
```elixir
def deps do
[
{:bun, "~> 1.2", runtime: Mix.env() == :dev}
{:bun, "~> 1.3", runtime: Mix.env() == :dev}
]
end
```
Expand All @@ -27,7 +27,7 @@ then it only needs to be a dev dependency:
```elixir
def deps do
[
{:bun, "~> 1.2", only: :dev}
{:bun, "~> 1.3", only: :dev}
]
end
```
Expand Down Expand Up @@ -91,7 +91,7 @@ First add it as a dependency in your `mix.exs`:
def deps do
[
{:phoenix, github: "phoenixframework/phoenix"},
{:bun, "~> 1.2", runtime: Mix.env() == :dev}
{:bun, "~> 1.3", runtime: Mix.env() == :dev}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Bun.MixProject do
use Mix.Project

@version "1.2.0"
@version "1.3.0"
@source_url "https://github.com/crbelaus/bun"

def project do
Expand Down

0 comments on commit 352eff5

Please sign in to comment.