Skip to content

Commit

Permalink
Merge branch 'master' into wrap-html-attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwiseman authored Jul 19, 2020
2 parents 7c25957 + 250b70a commit d300190
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ To install the Python version of the beautifier:
```bash
$ pip install jsbeautifier
```
Unlike the JavaScript version, the Python version can only reformat JavaScript. It does not work against HTML or CSS files, but you can install _css-beautify_ for CSS (_jsbeautifier_ needs to be installed already)
Unlike the JavaScript version, the Python version can only reformat JavaScript. It does not work against HTML or CSS files, but you can install _css-beautify_ for CSS:

```bash
$ pip install cssbeautifier
Expand Down
1 change: 1 addition & 0 deletions python/cssbeautifier/__version__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "1.11.0"
2 changes: 1 addition & 1 deletion python/setup-css.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from setup import PyTest # from setyp.py, not setuptools!

from setuptools import setup
from jsbeautifier.__version__ import __version__
from cssbeautifier.__version__ import __version__

from setuptools.command.test import test as TestCommand

Expand Down
1 change: 1 addition & 0 deletions tools/release-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ update_versions()
sedi -E 's/\((README\.md:.js-beautify@).+\)/(\1'$NEW_VERSION')/' README.md

echo "__version__ = '$NEW_VERSION'" > python/jsbeautifier/__version__.py
echo "__version__ = '$NEW_VERSION'" > python/cssbeautifier/__version__.py
git add .
git commit -am "Bump version numbers for $NEW_VERSION"
git push
Expand Down

0 comments on commit d300190

Please sign in to comment.