Skip to content

Commit 0d71ecd

Browse files
author
Adrien Delle Cave
committed
[RELEASE] version: 0.0.28.
1 parent 0e8c61d commit 0d71ecd

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
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.28) unstable; urgency=medium
2+
3+
* [RELEASE] version: 0.0.28.
4+
5+
-- Adrien DELLE CAVE (Decryptus) <[email protected]> Sun, 27 Nov 2022 05:37:31 +0100
6+
17
json-dotenv (0.0.27) unstable; urgency=medium
28

39
* [RELEASE] version: 0.0.27.

RELEASE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.27
1+
0.0.28

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.27
1+
0.0.28

bin/json-dotenv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ json-dotenv
88

99
from __future__ import absolute_import
1010

11-
__version__ = '0.0.27'
11+
__version__ = '0.0.28'
1212

1313
import argparse
1414
import json
@@ -261,7 +261,7 @@ class JsonDotEnv(object): # pylint: disable=bad-option-value,useless-object-inhe
261261

262262
@staticmethod
263263
def _rstrip_cr(s):
264-
return re.sub(r'\\n$', '', s)
264+
return re.sub(r'(\\n)+$', '', s)
265265

266266
def _parse_file(self):
267267
if self.options.file == '-':

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: [email protected]
66
copyright: '2019-2022 Adrien Delle Cave'
7-
release: '0.0.27'
8-
version: '0.0.27'
7+
release: '0.0.28'
8+
version: '0.0.28'
99
license: License GPL-3
1010
url: https://github.com/decryptus/json-dotenv
1111
python_requires:

0 commit comments

Comments
 (0)