Skip to content

Commit

Permalink
Merge branch 'release/1.2.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
lasote committed Apr 10, 2018
2 parents 4fcc96b + cf7009c commit 83419cd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion conans/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
SERVER_CAPABILITIES = [COMPLEX_SEARCH_CAPABILITY, ]


__version__ = '1.2.2'
__version__ = '1.2.3'
2 changes: 1 addition & 1 deletion conans/client/generators/scons.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def content(self):
' "SHLINKFLAGS" : {info.sharedlinkflags},\n'
' "LINKFLAGS" : {info.exelinkflags},\n'
' }},\n'
' "{dep}_version" : "{info.version}"\n')
' "{dep}_version" : "{info.version}",\n')

sections = []
sections.append("conan = {\n")
Expand Down
6 changes: 3 additions & 3 deletions conans/test/generators/scons_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ def variables_setup_test(self):
self.assertIn(" \"CPPDEFINES\" : [\'MYDEFINE2\', \'MYDEFINE1\'],", scons_lines)
self.assertIn(" \"CPPDEFINES\" : [\'MYDEFINE1\'],", scons_lines)
self.assertIn(" \"CPPDEFINES\" : [\'MYDEFINE2\'],", scons_lines)
self.assertIn(' "conan_version" : "None"', scons_lines)
self.assertIn(' "MyPkg_version" : "0.1"', scons_lines)
self.assertIn(' "MyPkg2_version" : "3.2.3"', scons_lines)
self.assertIn(' "conan_version" : "None",', scons_lines)
self.assertIn(' "MyPkg_version" : "0.1",', scons_lines)
self.assertIn(' "MyPkg2_version" : "3.2.3",', scons_lines)

0 comments on commit 83419cd

Please sign in to comment.