From ccd76e1948c4db48a73f7c7ce8913a1b2d46db9b Mon Sep 17 00:00:00 2001 From: Martin Krizek Date: May 09 2016 10:30:25 +0000 Subject: bumping version to 0.4.12 --- diff --git a/docs/source/conf.py b/docs/source/conf.py index 95ce2b5..9187038 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -53,7 +53,7 @@ copyright = u'2016, Fedora QA Devel' # The short X.Y version. version = '0.4' # The full version, including alpha/beta/rc tags. -release = '0.4.11' +release = '0.4.12' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/libtaskotron.spec b/libtaskotron.spec index 99a75d0..8fa5e38 100644 --- a/libtaskotron.spec +++ b/libtaskotron.spec @@ -3,7 +3,7 @@ %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")} Name: libtaskotron -Version: 0.4.11 +Version: 0.4.12 Release: 1%{?dist} Summary: Taskotron Support Library @@ -160,6 +160,11 @@ install -m 777 -d %{buildroot}/%{_sharedstatedir}/taskotron/images %{python_sitelib}/libtaskotron/ext/disposable/* %changelog +* Mon May 9 2016 Martin Krizek - 0.4.12-1 +- bash directive +- allow using a dot to access attributes of a variable in formula +- various fixes + * Mon Apr 18 2016 Martin Krizek - 0.4.11-1 - add result namespace whitelist - various fixes and small improvements diff --git a/libtaskotron/__init__.py b/libtaskotron/__init__.py index 00cafcd..7116503 100644 --- a/libtaskotron/__init__.py +++ b/libtaskotron/__init__.py @@ -4,4 +4,4 @@ # See the LICENSE file for more details on Licensing from __future__ import absolute_import -__version__ = '0.4.11' +__version__ = '0.4.12'