Skip to content

Commit

Permalink
1.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
failys committed Mar 30, 2018
1 parent e59fe6b commit 30bf660
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cairis/sql/init.sql
Expand Up @@ -3907,7 +3907,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,4);
INSERT INTO version (major,minor,patch) VALUES (1,6,0);
INSERT INTO attributes (id,name) VALUES (103,'did');
INSERT INTO trace_dimension values (0,'requirement');
INSERT INTO trace_dimension values (1,'persona');
Expand Down
2 changes: 1 addition & 1 deletion cairis/test/test_VersionAPI.py
Expand Up @@ -51,4 +51,4 @@ def test_version(self):
responseData = rv.data
objts = jsonpickle.decode(responseData)
self.assertIsNotNone(objts, 'No results after deserialization')
self.assertEqual(objts,'1.5.4')
self.assertEqual(objts,'1.6.0')
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -54,9 +54,9 @@
# built documents.
#
# The short X.Y version.
version = u'1.5'
version = u'1.6'
# The full version, including alpha/beta/rc tags.
release = u'1.5.4'
release = u'1.6.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -14,13 +14,13 @@
required = f.read().splitlines()

setup(name='cairis',
version='1.5.4',
version='1.6.0',
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.4',
download_url='https://github.com/failys/cairis/tarball/1.6.0',
packages=['cairis'],
include_package_data=True,
data_files = [('cairis/examples', egFiles)],
Expand Down

0 comments on commit 30bf660

Please sign in to comment.