Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions scss/scss_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
pyScss, a Scss compiler for Python

@author German M. Bravo (Kronuz) <german.mb@gmail.com>
@version 1.4.0
@version 1.4.1
@see https://github.com/Kronuz/pyScss
@copyright (c) 2012-2013 German M. Bravo (Kronuz)
@license MIT License
Expand Down Expand Up @@ -46,8 +46,8 @@

import sys

VERSION_INFO = (1, 4, 0)
DATE_INFO = (2022, 2, 23) # YEAR, MONTH, DAY
VERSION_INFO = (1, 4, 1)
DATE_INFO = (2024, 2, 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 + ")"
Expand Down