Skip to content

Commit

Permalink
2.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
failys committed Jun 23, 2019
1 parent 97df9a1 commit 08b8e75
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
Original file line number Diff line number Diff line change
Expand Up @@ -4008,7 +4008,7 @@ CREATE VIEW personal_risk as



INSERT INTO version (major,minor,patch) VALUES (2,0,2);
INSERT INTO version (major,minor,patch) VALUES (2,1,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
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,'2.0.2')
self.assertEqual(objts,'2.1.0')
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
# built documents.
#
# The short X.Y version.
version = u'2.0'
version = u'2.1'
# The full version, including alpha/beta/rc tags.
release = u'2.0.2'
release = u'2.1.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
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
required = f.read().splitlines()

setup(name='cairis',
version='2.0.2',
version='2.1.0',
author='Shamal Faily',
author_email='[email protected]',
description = 'A security design tool',
license = 'Apache Software License',
url='https://github.com/failys/cairis',
download_url='https://github.com/failys/cairis/tarball/2.0.2',
download_url='https://github.com/failys/cairis/tarball/2.1.0',
packages=['cairis'],
include_package_data=True,
data_files = [('cairis/examples', egFiles)],
Expand Down

0 comments on commit 08b8e75

Please sign in to comment.