Skip to content

Commit f67b1f4

Browse files
author
Adrien Delle Cave
committed
[RELEASE] version: 0.0.15.
1 parent a8cae74 commit f67b1f4

File tree

5 files changed

+16
-10
lines changed

5 files changed

+16
-10
lines changed

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
json-dotenv (0.0.15) unstable; urgency=medium
2+
3+
* [RELEASE] version: 0.0.15.
4+
5+
-- Adrien DELLE CAVE (Decryptus) <adc@doowan.net> Fri, 06 Sep 2019 17:07:39 +0200
6+
17
json-dotenv (0.0.14) unstable; urgency=medium
28

39
* [RELEASE] version: 0.0.14.

RELEASE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.14
1+
0.0.15

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.14
1+
0.0.15

bin/json-dotenv

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ __license__ = """
2222
You should have received a copy of the GNU General Public License
2323
along with this program. If not, see <http://www.gnu.org/licenses/>.
2424
"""
25-
__version__ = '0.0.14'
25+
__version__ = '0.0.15'
2626

2727
import argparse
2828
import json
@@ -87,19 +87,19 @@ def argv_parse_check():
8787
"--key",
8888
action = 'append',
8989
dest = 'key',
90-
type = six.u,
90+
type = six.text_type,
9191
default = [],
9292
help = "variable name to set or unset")
9393
parser.add_argument("-v",
9494
"--value",
9595
action = 'append',
9696
dest = 'value',
97-
type = six.u,
97+
type = six.text_type,
9898
default = [],
9999
help = "variable value to set")
100100
parser.add_argument("-f",
101101
dest = 'file',
102-
type = six.u,
102+
type = six.text_type,
103103
default = os.environ.get('JSON_DOTENV_FILE') or os.path.join(os.getcwd(), '.env'),
104104
help = "Location of the environment file or from stdin (-), instead of %(default)s")
105105
parser.add_argument("--force",
@@ -116,12 +116,12 @@ def argv_parse_check():
116116
"critical, error, warning, info, debug"))
117117
parser.add_argument("--logfile",
118118
dest = 'logfile',
119-
type = six.u,
119+
type = six.text_type,
120120
default = JSON_DOTENV_LOGFILE,
121121
help = "Use log file <logfile> instead of %(default)s")
122122
parser.add_argument("-o",
123123
dest = 'output',
124-
type = six.u,
124+
type = six.text_type,
125125
default = os.environ.get('JSON_DOTENV_OUTPUT') or '-',
126126
help = "Output result in file or to stdout")
127127
parser.add_argument("-q",

setup.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ description: json-dotenv
44
author: Adrien Delle Cave
55
author_email: pypi@doowan.net
66
copyright: '2019 doowan'
7-
release: '0.0.14'
8-
version: '0.0.14'
7+
release: '0.0.15'
8+
version: '0.0.15'
99
license: License GPL-2
1010
url: https://github.com/decryptus/json-dotenv
1111
python_requires:

0 commit comments

Comments
 (0)