Skip to content

Commit

Permalink
Release 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
andreyfedoseev committed Nov 14, 2022
1 parent e20fe50 commit c810fa8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Changelog
*********

2.3
===

- Fix incorrect source map URL with ``libsass``

2.2
===

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion static_precompiler/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.2"
__version__ = "2.3"
4 changes: 1 addition & 3 deletions static_precompiler/tests/test_scss.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit c810fa8

Please sign in to comment.