Skip to content

Commit

Permalink
1.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
cairisuser authored and cairisuser committed Jun 18, 2018
1 parent e71666c commit a6f7c58
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cairis/sql/init.sql
Expand Up @@ -3957,7 +3957,7 @@ CREATE VIEW personal_risk as



INSERT INTO version (major,minor,patch) VALUES (1,6,7);
INSERT INTO version (major,minor,patch) VALUES (1,6,8);
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.6.7')
self.assertEqual(objts,'1.6.8')
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -56,7 +56,7 @@
# The short X.Y version.
version = u'1.6'
# The full version, including alpha/beta/rc tags.
release = u'1.6.6'
release = u'1.6.8'

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

0 comments on commit a6f7c58

Please sign in to comment.