Skip to content

Commit b4ae12e

Browse files
committed
Release 2.2.2
1 parent 4ca5dc7 commit b4ae12e

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
@@ -4084,7 +4084,7 @@ CREATE VIEW conceptMapModel_all as
40844084

40854085

40864086

4087-
INSERT INTO version (major,minor,patch) VALUES (2,2,1);
4087+
INSERT INTO version (major,minor,patch) VALUES (2,2,2);
40884088
INSERT INTO attributes (id,name) VALUES (103,'did');
40894089
INSERT INTO trace_dimension values (0,'requirement');
40904090
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,'2.2.1')
54+
self.assertEqual(objts,'2.2.2')

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'2.2'
5858
# The full version, including alpha/beta/rc tags.
59-
release = u'2.2.1'
59+
release = u'2.2.2'
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='2.2.1',
17+
version='2.2.2',
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/cairis-platform/cairis/tarball/2.2.1',
23+
download_url='https://github.com/cairis-platform/cairis/tarball/2.2.2',
2424
packages=['cairis'],
2525
include_package_data=True,
2626
data_files = [('cairis/examples', egFiles)],

0 commit comments

Comments
 (0)