]> git.agnieray.net Git - galette.git/commitdiff
Fix minor version proposition
authorJohan Cwiklinski <johan@x-tnd.be>
Tue, 29 Jul 2014 06:04:02 +0000 (08:04 +0200)
committerJohan Cwiklinski <johan@x-tnd.be>
Tue, 29 Jul 2014 06:04:02 +0000 (08:04 +0200)
bin/release

index eea12d485f07ee444a1bb66cf8aa3dade4ba8b3e..71295cfcdd2e8bd8856b8646db958ab32a0549a6 100755 (executable)
@@ -78,7 +78,7 @@ def propose_version():
 
     if len(last_minor) == 5:
         #if the latest is a major version
-        new_minor = last_minor.join('.1')
+        new_minor = last_minor + ('.1')
     else:
         new_minor = '.'.join(incr_version(last_minor))