From 105f7fa816766823e218c5187320cc2e319f71e4 Mon Sep 17 00:00:00 2001 From: liangke Date: Mon, 19 Mar 2018 20:02:01 +0800 Subject: Fix some issues 1 Fix pep8 issue. 2 Add version file for staging and release job. 3 Modify 'traceback.print_exc()' code without Exception object in it. Change-Id: Id6d42a1a671f9cd8fdcf266bdb8f468889681bb9 Issue-ID: MULTICLOUD-151 Issue-ID: LOG-161 Signed-off-by: liangke --- pylog/version.properties | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pylog/version.properties (limited to 'pylog/version.properties') diff --git a/pylog/version.properties b/pylog/version.properties new file mode 100644 index 0000000..30248ed --- /dev/null +++ b/pylog/version.properties @@ -0,0 +1,28 @@ +#!/bin/bash +# Copyright (c) 2017-2018 VMware, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Versioning variables +# Note that these variables cannot be structured (e.g. : version.release or version.snapshot etc... ) +# because they are used in Jenkins, whose plug-in doesn't support + +major=1 +minor=2 +patch=0 + +base_version=${major}.${minor}.${patch} + +# Release must be completed with git revision # in Jenkins +release_version=${base_version} +snapshot_version=${base_version}-SNAPSHOT \ No newline at end of file -- cgit 1.2.3-korg