Skip to content

Commit 30bf660

Browse files
committed
1.6.0 release
1 parent e59fe6b commit 30bf660

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

cairis/sql/init.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3907,7 +3907,7 @@ CREATE VIEW quotation as
39073907
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;
39083908

39093909

3910-
INSERT INTO version (major,minor,patch) VALUES (1,5,4);
3910+
INSERT INTO version (major,minor,patch) VALUES (1,6,0);
39113911
INSERT INTO attributes (id,name) VALUES (103,'did');
39123912
INSERT INTO trace_dimension values (0,'requirement');
39133913
INSERT INTO trace_dimension values (1,'persona');

cairis/test/test_VersionAPI.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ def test_version(self):
5151
responseData = rv.data
5252
objts = jsonpickle.decode(responseData)
5353
self.assertIsNotNone(objts, 'No results after deserialization')
54-
self.assertEqual(objts,'1.5.4')
54+
self.assertEqual(objts,'1.6.0')

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
5454
# built documents.
5555
#
5656
# The short X.Y version.
57-
version = u'1.5'
57+
version = u'1.6'
5858
# The full version, including alpha/beta/rc tags.
59-
release = u'1.5.4'
59+
release = u'1.6.0'
6060

6161
# The language for content autogenerated by Sphinx. Refer to documentation
6262
# for a list of supported languages.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
required = f.read().splitlines()
1515

1616
setup(name='cairis',
17-
version='1.5.4',
17+
version='1.6.0',
1818
author='Shamal Faily',
1919
author_email='shamal.faily@gmail.com',
2020
description = 'A security design tool',
2121
license = 'Apache Software License',
2222
url='https://github.com/failys/cairis',
23-
download_url='https://github.com/failys/cairis/tarball/1.5.4',
23+
download_url='https://github.com/failys/cairis/tarball/1.6.0',
2424
packages=['cairis'],
2525
include_package_data=True,
2626
data_files = [('cairis/examples', egFiles)],

0 commit comments

Comments
 (0)