Skip to content

Commit

Permalink
2.1.1. release
Browse files Browse the repository at this point in the history
  • Loading branch information
failys committed Jul 11, 2019
1 parent 6f9a894 commit e5e9b59
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 @@ -4058,7 +4058,7 @@ CREATE VIEW goal_associations as



INSERT INTO version (major,minor,patch) VALUES (2,1,0);
INSERT INTO version (major,minor,patch) VALUES (2,1,1);
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.1.0')
self.assertEqual(objts,'2.1.1')
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'2.1'
# The full version, including alpha/beta/rc tags.
release = u'2.1.0'
release = u'2.1.1'

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

0 comments on commit e5e9b59

Please sign in to comment.