[tryton-debian-vcs] tryton-client branch debian updated. debian/3.2.0-1-3-gb2a091b
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Mon May 12 16:06:24 UTC 2014
The following commit has been merged in the debian branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-client.git;a=commitdiff;h=debian/3.2.0-1-3-gb2a091b
commit b2a091b6d87ff2b3b1b1c7405cb6d908a7c4f656
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Mon May 12 16:32:50 2014 +0200
Releasing debian version 3.2.1-1.
diff --git a/debian/changelog b/debian/changelog
index bcc2f43..05aec27 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+tryton-client (3.2.1-1) unstable; urgency=medium
+
+ * Updating signing key while using now plain .asc files instead of .pgp
+ binaries.
+ * Merging upstream version 3.2.1.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Mon, 12 May 2014 16:32:50 +0200
+
tryton-client (3.2.0-1) unstable; urgency=medium
* Merging upstream version 3.2.0.
commit f69f83a33c7a097a98a02f9a9372c7b5f18f6c5d
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Mon May 12 16:32:47 2014 +0200
Merging upstream version 3.2.1.
diff --git a/CHANGELOG b/CHANGELOG
index 4df6535..e1911e0 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.2.1 - 2014-05-07
+* Bug fixes (see mercurial logs for details)
+
Version 3.2.0 - 2014-04-21
* Bug fixes (see mercurial logs for details)
* Add option to show revisions
diff --git a/PKG-INFO b/PKG-INFO
index b05d04d..83379fc 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: tryton
-Version: 3.2.0
+Version: 3.2.1
Summary: Tryton client
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/tryton.egg-info/PKG-INFO b/tryton.egg-info/PKG-INFO
index b05d04d..83379fc 100644
--- a/tryton.egg-info/PKG-INFO
+++ b/tryton.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: tryton
-Version: 3.2.0
+Version: 3.2.1
Summary: Tryton client
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/tryton/gui/window/view_form/model/field.py b/tryton/gui/window/view_form/model/field.py
index 04734bb..95d698e 100644
--- a/tryton/gui/window/view_form/model/field.py
+++ b/tryton/gui/window/view_form/model/field.py
@@ -207,7 +207,8 @@ class DateTimeField(Field):
date_format() + ' ' + self.time_format(record))[:6])
except ValueError:
value = self._default
- value = common.untimezoned_date(value)
+ if value:
+ value = common.untimezoned_date(value)
super(DateTimeField, self).set_client(record, value,
force_change=force_change)
diff --git a/tryton/version.py b/tryton/version.py
index e46e927..5fd6fdf 100644
--- a/tryton/version.py
+++ b/tryton/version.py
@@ -1,6 +1,6 @@
#This file is part of Tryton. The COPYRIGHT file at the top level of
#this repository contains the full copyright notices and license terms.
PACKAGE = "tryton"
-VERSION = "3.2.0"
+VERSION = "3.2.1"
LICENSE = "GPL-3"
WEBSITE = "http://www.tryton.org/"
--
tryton-client
More information about the tryton-debian-vcs
mailing list