Skip to content

Commit

Permalink
Release 1.1.0 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
crbelaus authored Feb 7, 2024
1 parent e2f6c85 commit 722557a
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.0", runtime: Mix.env() == :dev}
{:bun, "~> 1.1", 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.0", only: :dev}
{:bun, "~> 1.1", only: :dev}
]
end
```
Expand Down Expand Up @@ -93,7 +93,7 @@ First add it as a dependency in your `mix.exs`:
def deps do
[
{:phoenix, github: "phoenixframework/phoenix"},
{:bun, "~> 1.0", runtime: Mix.env() == :dev}
{:bun, "~> 1.1", 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.0.0"
@version "1.1.0"
@source_url "https://github.com/crbelaus/bun"

def project do
Expand Down

0 comments on commit 722557a

Please sign in to comment.