Skip to content

Commit

Permalink
Release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
crbelaus committed Nov 17, 2024
1 parent 3cf865a commit b82e880
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.3", runtime: Mix.env() == :dev}
{:bun, "~> 1.4", 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.3", only: :dev}
{:bun, "~> 1.4", 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.3", runtime: Mix.env() == :dev}
{:bun, "~> 1.4", 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.3.2"
@version "1.4.0"
@source_url "https://github.com/crbelaus/bun"

def project do
Expand Down

0 comments on commit b82e880

Please sign in to comment.