Skip to content

Commit

Permalink
2.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
failys committed Jan 10, 2020
1 parent 8726f7c commit c4d0b64
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 @@ -4140,7 +4140,7 @@ CREATE VIEW conceptMapModel_all as



INSERT INTO version (major,minor,patch) VALUES (2,3,0);
INSERT INTO version (major,minor,patch) VALUES (2,3,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.3.0')
self.assertEqual(objts,'2.3.1')
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

# General information about the project.
project = u'CAIRIS'
copyright = u'2019, Shamal Faily'
copyright = u'2020, Shamal Faily'
author = u'Shamal Faily'

# The version info for the project you're documenting, acts as replacement for
Expand All @@ -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.0'
release = u'2.3.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.3.0',
version='2.3.1',
author='Shamal Faily',
author_email='shamal.faily@gmail.com',
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.0',
download_url='https://github.com/cairis-platform/cairis/tarball/2.3.1',
packages=['cairis'],
include_package_data=True,
data_files = [('cairis/examples', egFiles)],
Expand Down

0 comments on commit c4d0b64

Please sign in to comment.