-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #395 from e0ne/bump-1-3-7
Bump version to 1.3.7
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
pyScss, a Scss compiler for Python | ||
@author German M. Bravo (Kronuz) <[email protected]> | ||
@version 1.2.0 alpha | ||
@version 1.3.7 | ||
@see https://github.com/Kronuz/pyScss | ||
@copyright (c) 2012-2013 German M. Bravo (Kronuz) | ||
@license MIT License | ||
|
@@ -46,8 +46,8 @@ | |
|
||
import sys | ||
|
||
VERSION_INFO = (1, 3, 6) | ||
DATE_INFO = (2020, 3, 21) # YEAR, MONTH, DAY | ||
VERSION_INFO = (1, 3, 7) | ||
DATE_INFO = (2020, 3, 26) # YEAR, MONTH, DAY | ||
VERSION = '.'.join(str(i) for i in VERSION_INFO) | ||
REVISION = '%04d%02d%02d' % DATE_INFO | ||
BUILD_INFO = "pyScss v" + VERSION + " (" + REVISION + ")" | ||
|