Skip to content

Commit

Permalink
1.6.4 version
Browse files Browse the repository at this point in the history
  • Loading branch information
failys committed Apr 30, 2018
1 parent 6d87220 commit bb00310
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
Original file line number Diff line number Diff line change
Expand Up @@ -3957,7 +3957,7 @@ CREATE VIEW personal_risk as



INSERT INTO version (major,minor,patch) VALUES (1,6,3);
INSERT INTO version (major,minor,patch) VALUES (1,6,4);
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
Original file line number Diff line number Diff line change
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.3')
self.assertEqual(objts,'1.6.4')
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
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.3'
release = u'1.6.4'

# 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
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
required = f.read().splitlines()

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

0 comments on commit bb00310

Please sign in to comment.