Skip to content

Commit

Permalink
Release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mcrumm committed Apr 28, 2022
1 parent d14c785 commit 114b224
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

## v0.5.0
## v0.5.0 (2022-04-28)

- Support upstream arm64 binaries
- Update Sass version to `1.49.11`
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ in dev:
```elixir
def deps do
[
{:dart_sass, "~> 0.4", runtime: Mix.env() == :dev}
{:dart_sass, "~> 0.5", runtime: Mix.env() == :dev}
]
end
```
Expand All @@ -24,7 +24,7 @@ then it only needs to be a dev dependency:
```elixir
def deps do
[
{:dart_sass, "~> 0.4", only: :dev}
{:dart_sass, "~> 0.5", only: :dev}
]
end
```
Expand Down Expand Up @@ -90,7 +90,7 @@ First add it as a dependency in your `mix.exs`:
def deps do
[
{:phoenix, "~> 1.6.0"},
{:dart_sass, "~> 0.4", runtime: Mix.env() == :dev}
{:dart_sass, "~> 0.5", 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 DartSass.MixProject do
use Mix.Project

@version "0.4.0"
@version "0.5.0"
@source_url "https://github.com/CargoSense/dart_sass"

def project do
Expand Down

0 comments on commit 114b224

Please sign in to comment.