Skip to content

Commit

Permalink
Release 2.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
failys committed Jul 27, 2020
1 parent 50960f2 commit 8f2bdfc
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
Expand Up @@ -4238,7 +4238,7 @@ CREATE VIEW conceptMapModel_all as



INSERT INTO version (major,minor,patch) VALUES (2,3,4);
INSERT INTO version (major,minor,patch) VALUES (2,3,5);
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
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.3.4')
self.assertEqual(objts,'2.3.5')
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -56,7 +56,7 @@
# The short X.Y version.
version = u'2.3'
# The full version, including alpha/beta/rc tags.
release = u'2.3.4'
release = u'2.3.5'

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

setup(name='cairis',
version='2.3.4',
version='2.3.5',
author='Shamal Faily',
author_email='admin@cairis.org',
description = 'A security design tool',
license = 'Apache Software License',
url='https://github.com/cairis-platform/cairis',
download_url='https://github.com/cairis-platform/cairis/tarball/2.3.4',
download_url='https://github.com/cairis-platform/cairis/tarball/2.3.5',
packages=['cairis'],
include_package_data=True,
data_files = [('cairis/examples', egFiles)],
Expand Down

0 comments on commit 8f2bdfc

Please sign in to comment.