Skip to content

Commit 718ed18

Browse files
author
Adrien Delle Cave
committed
[RELEASE] version: 0.0.4
1 parent 468b901 commit 718ed18

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

bin/json-dotenv

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ __license__ = """
2020
You should have received a copy of the GNU General Public License
2121
along with this program. If not, see <http://www.gnu.org/licenses/>.
2222
"""
23-
__version__ = '0.0.3'
23+
__version__ = '0.0.4'
2424

2525

2626
import dotenv
@@ -314,6 +314,7 @@ def main(options):
314314
except (SystemExit, KeyboardInterrupt):
315315
rc = 255
316316
except IOError, e:
317+
rc = 5
317318
LOG.error(e)
318319
except Exception, e:
319320
rc = 6

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import os
55
from setuptools import find_packages, setup
66

7-
version = '0.0.3'
7+
version = '0.0.4'
88

99
current_dir = os.path.abspath(os.path.dirname(__file__))
1010
requirements = [line.strip() for line in open(os.path.join(current_dir, 'requirements.txt'), 'r').readlines()]

0 commit comments

Comments
 (0)