From b56d86ff4aeca17328ec41542eb6a4a61080633d Mon Sep 17 00:00:00 2001 From: Shamal Faily Date: Sun, 11 Feb 2018 09:43:03 +0000 Subject: [PATCH] 1.5.3 --- cairis/sql/init.sql | 2 +- docs/conf.py | 4 ++-- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cairis/sql/init.sql b/cairis/sql/init.sql index 082c80944..3c6157bc3 100755 --- a/cairis/sql/init.sql +++ b/cairis/sql/init.sql @@ -3871,7 +3871,7 @@ CREATE VIEW quotation as select c.name code,'persona' artifact_type,p.name artifact_name,'Contextual' section,pc.start_index,pc.end_index,personaQuotationString(p.name,'contextual',pc.start_index,pc.end_index) quote,pc.synopsis,pc.label from code c, persona p, persona_code pc where c.id = pc.code_id and p.id = pc.persona_id order by 1; -INSERT INTO version (major,minor,patch) VALUES (1,5,2); +INSERT INTO version (major,minor,patch) VALUES (1,5,3); INSERT INTO attributes (id,name) VALUES (103,'did'); INSERT INTO trace_dimension values (0,'requirement'); INSERT INTO trace_dimension values (1,'persona'); diff --git a/docs/conf.py b/docs/conf.py index 41da86b56..f798652dd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -46,7 +46,7 @@ # General information about the project. project = u'CAIRIS' -copyright = u'2017, Shamal Faily' +copyright = u'2018, Shamal Faily' author = u'Shamal Faily' # The version info for the project you're documenting, acts as replacement for @@ -56,7 +56,7 @@ # The short X.Y version. version = u'1.5' # The full version, including alpha/beta/rc tags. -release = u'1.5.2' +release = u'1.5.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 03bd24e70..e13312b51 100644 --- a/setup.py +++ b/setup.py @@ -14,13 +14,13 @@ required = f.read().splitlines() setup(name='cairis', - version='1.5.2', + version='1.5.3', author='Shamal Faily', author_email='shamal.faily@gmail.com', description = 'A security design tool', license = 'Apache Software License', url='https://github.com/failys/cairis', - download_url='https://github.com/failys/cairis/tarball/1.5.2', + download_url='https://github.com/failys/cairis/tarball/1.5.3', packages=['cairis'], include_package_data=True, data_files = [('cairis/examples', egFiles)],