[asl] 14/27: More cosmetic fixes, bumping version to 0.1.7

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Sat Nov 26 16:35:43 UTC 2016


This is an automated email from the git hooks/post-receive script.

ghisvail-guest pushed a commit to branch debian/master
in repository asl.

commit 390491aa5780dda79c44580cc15087943168d6a4
Author: Avtech Scientific <AvtechScientific at users.noreply.github.com>
Date:   Wed Nov 9 13:55:28 2016 +0200

    More cosmetic fixes, bumping version to 0.1.7
---
 CMakeLists.txt               |  2 +-
 COPYRIGHT.org                | 10 +++----
 NEWS.org                     |  6 ++--
 test/testMath/CMakeLists.txt | 70 ++++++++++++++++++++++----------------------
 4 files changed, 44 insertions(+), 44 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index fe93a97..a73dc32 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -29,7 +29,7 @@ cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
 # Set version number
 set(ASL_VERSION_MAJOR 0)
 set(ASL_VERSION_MINOR 1)
-set(ASL_VERSION_PATCH 7-dev)
+set(ASL_VERSION_PATCH 7)
 
 set(ASL_VERSION ${ASL_VERSION_MAJOR}.${ASL_VERSION_MINOR}.${ASL_VERSION_PATCH})
 
diff --git a/COPYRIGHT.org b/COPYRIGHT.org
index 5fe5a2b..6c4164d 100644
--- a/COPYRIGHT.org
+++ b/COPYRIGHT.org
@@ -30,9 +30,9 @@ The reference to ASL may be in an acknowledgment section, in a phrase such as th
 
 To cite ASL in publications please adopt the following:
 
-/ASL: Advanced Simulation Library™, an open source hardware accelerated multiphysics simulation platform/.[1] Version 0.1.5.[2] 2015-08-01.[3] [[http://asl.org.il]].[4] Avtech Scientific. Modiin Illit, Israel.
+/ASL: Advanced Simulation Library™, an open source hardware accelerated multiphysics simulation platform/.[fn:1] Version 0.1.5.[fn:2] 2015-08-01.[fn:3] [[http://asl.org.il]].[fn:4] Avtech Scientific. Modiin Illit, Israel.
 
-[1] Additionally any sub-routines that were used may be specified.
-[2] Version number or commit hash (in the latter case write: Commit 794e4916)
-[3] Release or commit date.
-[4] The URL should be an active hyperlink wherever technically possible.
+[fn:1] Additionally any sub-routines that were used may be specified.
+[fn:2] Version number or commit hash (in the latter case write: Commit 794e4916).
+[fn:3] Release or commit date.
+[fn:4] The URL should be an active hyperlink wherever technically possible.
diff --git a/NEWS.org b/NEWS.org
index 14f04e8..aec24cb 100644
--- a/NEWS.org
+++ b/NEWS.org
@@ -1,6 +1,6 @@
 * News and ChangeLog
 
-** 0.1.7
+** 0.1.7 <2016-11-09>
 
 - providing more accurate project description in README
 - adding missing default parameters for some examples
@@ -10,13 +10,13 @@
 
 Contributors: Bartłomiej Piotrowski, Evgeniy Alekseev, Orion Poplawski.
 
-** 0.1.6
+** 0.1.6 <2015-08-24>
 
 - fixing linkage issues
 - fixing testing issues
 - fixing an installation bug
 
-** 0.1.5
+** 0.1.5 <2015-08-01>
 
 - supplying cl.hpp, since not provided by OpenCL 2.0 (causes harmless "deprecated" warnings)
 - bug fixes
diff --git a/test/testMath/CMakeLists.txt b/test/testMath/CMakeLists.txt
index 115aebb..d43c300 100644
--- a/test/testMath/CMakeLists.txt
+++ b/test/testMath/CMakeLists.txt
@@ -1,37 +1,37 @@
-#
-# Advanced Simulation Library <http://asl.org.il>
-# 
-# Copyright 2015 Avtech Scientific <http://avtechscientific.com>
-#
-#
-# This file is part of Advanced Simulation Library (ASL).
-#
-# ASL is free software: you can redistribute it and/or modify it
-# under the terms of the GNU Affero General Public License as
-# published by the Free Software Foundation, version 3 of the License.
-#
-# ASL is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with ASL. If not, see <http://www.gnu.org/licenses/>.
-#
-
-
-include_directories(${CMAKE_SOURCE_DIR}/src)
-
-add_executable(testASLData testASLData.cc)
-target_link_libraries(testASLData asl)
-add_test(NAME testASLData COMMAND testASLData)
-
-add_executable(testDistanceFunction testDistanceFunction.cc)
-target_link_libraries(testDistanceFunction aslvtk aslnum asl)
-add_test(NAME testDistanceFunction COMMAND testDistanceFunction)
+#
+# Advanced Simulation Library <http://asl.org.il>
+#
+# Copyright 2015 Avtech Scientific <http://avtechscientific.com>
+#
+#
+# This file is part of Advanced Simulation Library (ASL).
+#
+# ASL is free software: you can redistribute it and/or modify it
+# under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, version 3 of the License.
+#
+# ASL is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with ASL. If not, see <http://www.gnu.org/licenses/>.
+#
+
+
+include_directories(${CMAKE_SOURCE_DIR}/src)
+
+add_executable(testASLData testASLData.cc)
+target_link_libraries(testASLData asl)
+add_test(NAME testASLData COMMAND testASLData)
+
+add_executable(testDistanceFunction testDistanceFunction.cc)
+target_link_libraries(testDistanceFunction aslvtk aslnum asl)
+add_test(NAME testDistanceFunction COMMAND testDistanceFunction)
 set_tests_properties(testDistanceFunction PROPERTIES LABELS DoublePrecision)
-
-add_executable(testReductionFunction testReductionFunction.cc)
-target_link_libraries(testReductionFunction asl)
-add_test(NAME testReductionFunction COMMAND testReductionFunction)
+
+add_executable(testReductionFunction testReductionFunction.cc)
+target_link_libraries(testReductionFunction asl)
+add_test(NAME testReductionFunction COMMAND testReductionFunction)
 set_tests_properties(testReductionFunction PROPERTIES LABELS DoublePrecision)
\ No newline at end of file

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/asl.git



More information about the debian-science-commits mailing list