Skip to content

Commit c4d0b64

Browse files
committed
2.3.1 release
1 parent 8726f7c commit c4d0b64

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

cairis/sql/init.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4140,7 +4140,7 @@ CREATE VIEW conceptMapModel_all as
41404140

41414141

41424142

4143-
INSERT INTO version (major,minor,patch) VALUES (2,3,0);
4143+
INSERT INTO version (major,minor,patch) VALUES (2,3,1);
41444144
INSERT INTO attributes (id,name) VALUES (103,'did');
41454145
INSERT INTO trace_dimension values (0,'requirement');
41464146
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.3.0')
54+
self.assertEqual(objts,'2.3.1')

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
# General information about the project.
4848
project = u'CAIRIS'
49-
copyright = u'2019, Shamal Faily'
49+
copyright = u'2020, Shamal Faily'
5050
author = u'Shamal Faily'
5151

5252
# The version info for the project you're documenting, acts as replacement for
@@ -56,7 +56,7 @@
5656
# The short X.Y version.
5757
version = u'2.3'
5858
# The full version, including alpha/beta/rc tags.
59-
release = u'2.3.0'
59+
release = u'2.3.1'
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.3.0',
17+
version='2.3.1',
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/cairis-platform/cairis',
23-
download_url='https://github.com/cairis-platform/cairis/tarball/2.3.0',
23+
download_url='https://github.com/cairis-platform/cairis/tarball/2.3.1',
2424
packages=['cairis'],
2525
include_package_data=True,
2626
data_files = [('cairis/examples', egFiles)],

0 commit comments

Comments
 (0)