Skip to content

Commit

Permalink
fixing last bugs for 1.9.2-beta-1
Browse files Browse the repository at this point in the history
  • Loading branch information
gaubert committed Feb 10, 2017
1 parent fdff5da commit fea298d
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
30 changes: 30 additions & 0 deletions RELEASE-NOTE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,36 @@
Release Notes for the different versions:
-------------------------------

-------------------------------
Version Gmvault-v1.9.2-beta:
-------------------------------
-------------------------------
Date: 31.03.2017

Release fixing bugs left in 1.9.1

Bug Fixes:
----------
- Fix bug link to the Gmail CA certificate verification. Now Gmvault embeds default main CA certs [Github issue #285]
- Fix bug with chat synchronization, provoking the re-syncing of the chats for some users [#135]
- Updating IMAPClient Logbook and other python dependencies [#289]
- Fix bug with gmvault configuration file creation (conf file was always recreated) [#262]
- Fix restore bug where NoneType is not iterable was appearing [#281]

Shoutouts to:
-------------

Shout out to everybody who continued supporting the project while I was away.

Also shoutouts to all the users that sent me support emails and raised issues by emails.

Gmvault Pantheon:
-----------------

A million time thank you for the benevolent donors that are forever in the Gmvault Pantheon and All of Fame for their gesture.

Jason Stangroome, Mathieu Pinson, Mathieu Clavel, Stijn Jonker, Douglas Carter, Steven Moschidis, GoVelvet LLC, Daniel Brass , Joseph Colburn, Joanne Kaye, Bernie Santos, Wolfgang Schwaiger, Kraut Computing, Matt Burke, Ademario Araujo Jr, Roque Pinel, George Armhold, Randi Veiberg, Gregory Szilagyi, Antony Moore, Filip Moerman, Axel Amigo Arnold, Jonathan Sarasin, Kirby Moyers, Alberto Cottica, Richard Lee, Suneel Kanuri, Owen Phelps, Clint Chapman, Donmez Ismail, Tomas Bäckman, Keith Petersen, Holden Karau, James Mcfarland, Clayton Stanley, Stefan Habetz, Francesco Bellomo, Brian Yanosik, Bjarte Aune Olsen, Joel Sylvester, Billy Amon, Alexander Halperin, John Zendano, Alex Van't Hof, JJ Tiziou Photography, Sally Carr, Jacek Szczech, Baden Holt, Eleonora Borelli, Patrick Van Humbeeck

-------------------------------
Version Gmvault-v1.9.1-beta:
-------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/gmv/gmvault_const.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
#Do not touch any parameters below as it could force an overwrite of this file
[VERSION]
conf_version=1.9.2-beta
conf_version=1.9.2-beta-1
[GoogleOauth2]
scope=https://mail.google.com/
Expand Down
4 changes: 2 additions & 2 deletions src/gmv/gmvault_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

LOG = log_utils.LoggerFactory.get_logger('gmvault_utils')

GMVAULT_VERSION = "1.9.2-beta"
GMVAULT_VERSION = "1.9.2-beta-1"

class memoized(object): #pylint: disable=C0103
"""Decorator that caches a function's return value each time it is called.
Expand Down Expand Up @@ -641,7 +641,7 @@ def get_conf_defaults():
VERSION_RE = re.compile(VERSION_PATTERN)

#list of version conf to not overwrite with the next
VERSIONS_TO_PRESERVE = [ '1.9.2-beta' ]
VERSIONS_TO_PRESERVE = [ '1.9.2-beta-1' ]

def _get_version_from_conf(home_conf_file):
"""
Expand Down

0 comments on commit fea298d

Please sign in to comment.