Skip to content

Commit

Permalink
Merge pull request #220 from PnX-SI/develop
Browse files Browse the repository at this point in the history
Develop > Master / 1.1.4
  • Loading branch information
camillemonchicourt authored Jun 30, 2021
2 parents 9b66e9a + 3abc13e commit 90a53f4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.3
1.1.4
2 changes: 1 addition & 1 deletion backend/transform/check_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def convert_to_datetime(value):
try:
# print('init date')
# print(value)
formated_date = re.sub("[/.: ]", "-", value)
formated_date = re.sub("[/.: ]", "-", value.strip())
# print('formagted date')
# print(formated_date)
strftime_format = [
Expand Down
7 changes: 7 additions & 0 deletions docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
CHANGELOG
=========

1.1.4 (2021-06-30)
------------------

**🐛 Corrections**

* Correction du parsing des dates dans le cas où il y a une date mais pas d'heure, alors qu’on a mappé un champs d'heure

1.1.3 (2021-06-29)
------------------

Expand Down
2 changes: 1 addition & 1 deletion manifest.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package_format_version = '1'
module_code = 'IMPORT'
module_version = '1.1.3'
module_version = '1.1.4'
min_geonature_version = '2.6.0'
max_geonature_version = '3.0.0'
exclude_geonature_versions = []

0 comments on commit 90a53f4

Please # to comment.