Update Sass version to 1.49.0
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5502866..d1a01f7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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)
diff --git a/README.md b/README.md
index f145f53..8133036 100644
--- a/README.md
+++ b/README.md
@@ -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:
@@ -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__)
@@ -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__)
diff --git a/config/config.exs b/config/config.exs
index eb70d09..015395b 100644
--- a/config/config.exs
+++ b/config/config.exs
@@ -1,7 +1,7 @@
import Config
config :dart_sass,
- version: "1.43.4",
+ version: "1.49.0",
another: [
args: ["--version"]
]
diff --git a/lib/dart_sass.ex b/lib/dart_sass.ex
index 60659b1..07713f2 100644
--- a/lib/dart_sass.ex
+++ b/lib/dart_sass.ex
@@ -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__)
@@ -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 """
diff --git a/test/dart_sass_test.exs b/test/dart_sass_test.exs
index 9ddfbae..7b6b4d2 100644
--- a/test/dart_sass_test.exs
+++ b/test/dart_sass_test.exs
@@ -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 ->