Skip to content

Commit 9ace3c6

Browse files
committed
1.6.1 release
1 parent 79a1586 commit 9ace3c6

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

cairis/sql/init.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3912,7 +3912,7 @@ CREATE VIEW provisioned_personal_information as
39123912

39133913

39143914

3915-
INSERT INTO version (major,minor,patch) VALUES (1,6,0);
3915+
INSERT INTO version (major,minor,patch) VALUES (1,6,1);
39163916
INSERT INTO attributes (id,name) VALUES (103,'did');
39173917
INSERT INTO trace_dimension values (0,'requirement');
39183918
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.6.0')
54+
self.assertEqual(objts,'1.6.1')

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
# The short X.Y version.
5757
version = u'1.6'
5858
# The full version, including alpha/beta/rc tags.
59-
release = u'1.6.0'
59+
release = u'1.6.1'
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.6.0',
17+
version='1.6.1',
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.6.0',
23+
download_url='https://github.com/failys/cairis/tarball/1.6.1',
2424
packages=['cairis'],
2525
include_package_data=True,
2626
data_files = [('cairis/examples', egFiles)],

0 commit comments

Comments
 (0)