Skip to content

Commit

Permalink
Update Sass version to 1.49.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mcrumm committed Jan 19, 2022
1 parent 2d3c855 commit 90d478e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

## v0.3.1

* Update Sass version to `1.49.0`
* Attach system target architecture to saved esbuild executable (h/t @cw789)
* Use user cache directory (h/t @josevalim)
* Add support for 32bit linux (h/t @derek-zhou)
* Support `HTTP_PROXY/HTTPS_PROXY` to fetch esbuild (h/t @iaddict)
* Update Sass version to `1.43.4`
* Fallback to _build if Mix.Project is not available
* Allow `config :dart_sass, :path, path` to configure the path to the Sass executable (or snapshot)
* Support OTP 24 on Apple M1 architectures (via Rosetta2)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Once installed, change your `config/config.exs` to pick your
dart_sass version of choice:

```elixir
config :dart_sass, version: "1.43.4"
config :dart_sass, version: "1.49.0"
```

Now you can install dart-sass by running:
Expand Down Expand Up @@ -68,7 +68,7 @@ directory, the OS environment, and default arguments to the

```elixir
config :dart_sass,
version: "1.43.4",
version: "1.49.0",
default: [
args: ~w(css/app.scss ../priv/static/assets/app.css),
cd: Path.expand("../assets", __DIR__)
Expand Down Expand Up @@ -100,7 +100,7 @@ compile CSS to the output location `priv/static/assets/app.css`:

```elixir
config :dart_sass,
version: "1.43.4",
version: "1.49.0",
default: [
args: ~w(css/app.scss ../priv/static/assets/app.css),
cd: Path.expand("../assets", __DIR__)
Expand Down
2 changes: 1 addition & 1 deletion config/config.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Config

config :dart_sass,
version: "1.43.4",
version: "1.49.0",
another: [
args: ["--version"]
]
4 changes: 2 additions & 2 deletions lib/dart_sass.ex
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defmodule DartSass do
directory and environment:
config :dart_sass,
version: "1.43.4",
version: "1.49.0",
default: [
args: ~w(css/app.scss ../priv/static/assets/app.css),
cd: Path.expand("../assets", __DIR__)
Expand Down Expand Up @@ -85,7 +85,7 @@ defmodule DartSass do
@doc false
# Latest known version at the time of publishing.
def latest_version do
"1.43.4"
"1.49.0"
end

@doc """
Expand Down
2 changes: 1 addition & 1 deletion test/dart_sass_test.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule DartSassTest do
use ExUnit.Case, async: true

@version "1.43.4"
@version "1.49.0"

test "run on default" do
assert ExUnit.CaptureIO.capture_io(fn ->
Expand Down

0 comments on commit 90d478e

Please sign in to comment.