diff --git a/CHANGES.rst b/CHANGES.rst index 0f95c56..0b5956b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,11 @@ Changelog ********* +2.3 +=== + + - Fix incorrect source map URL with ``libsass`` + 2.2 === diff --git a/docs/conf.py b/docs/conf.py index 1216d94..b8e0228 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,7 +55,7 @@ # built documents. # # The short X.Y version. -version = "2.2" +version = "2.3" # The full version, including alpha/beta/rc tags. release = version diff --git a/static_precompiler/__init__.py b/static_precompiler/__init__.py index d3c8880..202075f 100644 --- a/static_precompiler/__init__.py +++ b/static_precompiler/__init__.py @@ -1 +1 @@ -__version__ = "2.2" +__version__ = "2.3" diff --git a/static_precompiler/tests/test_scss.py b/static_precompiler/tests/test_scss.py index 31dd87c..ca363c1 100644 --- a/static_precompiler/tests/test_scss.py +++ b/static_precompiler/tests/test_scss.py @@ -76,9 +76,7 @@ def test_sourcemap(compiler_module, monkeypatch, tmpdir): assert sourcemap["file"] == "test.css" with open(full_output_path) as compiled_file: - assert "/*# sourceMappingURL=test.css.map */" in { - line.strip() for line in compiled_file.readlines() - } + assert "/*# sourceMappingURL=test.css.map */" in {line.strip() for line in compiled_file.readlines()} @pytest.mark.parametrize("compiler_module", (libsass, scss))