commit 1e83681706de0df545bd9bbff2fa6187a038f734
parent ac83a839c46d0b785b35cf0b82a6cfa8e1ea25c2
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Fri, 1 Oct 2021 15:48:22 +0200
Merge branch 'release_0.4.1' into develop
Diffstat:
13 files changed, 20 insertions(+), 15 deletions(-)
diff --git a/README.md b/README.md
@@ -33,6 +33,11 @@ formats on which it relies.
## Release notes
+### Version 0.4.1
+
+Displays the time spent constructing the geometric distribution, writing the
+sampled geometries, and performing the calculations.
+
### Version 0.4
- Set the minimum number of scattering angles to 2 rather than the previous
@@ -49,7 +54,7 @@ formats on which it relies.
## License
-Copyright (C) 2020 [|Meso|Star>](http://www.meso-star.com)
+Copyright (C) 2020, 2021 [|Meso|Star>](http://www.meso-star.com)
(contact@meso-star.com). Copyright (C) 2015, 2016 CNRS. Schiff is free
software released under the GPL v3+ license: GNU GPL version 3 or later. You
are welcome to redistribute it under certain conditions; refer to the COPYING
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -1,4 +1,4 @@
-# Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+# Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
# Copyright (C) 2015, 2016 CNRS
#
# This program is free software: you can redistribute it and/or modify
@@ -50,7 +50,7 @@ include(rcmake_runtime)
################################################################################
set(VERSION_MAJOR 0)
set(VERSION_MINOR 4)
-set(VERSION_PATCH 0)
+set(VERSION_PATCH 1)
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
set(SCHIFF_ARGS_DEFAULT_NINSAMPLES "100")
diff --git a/cmake/LibYAMLConfig.cmake b/cmake/LibYAMLConfig.cmake
@@ -1,4 +1,4 @@
-# Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+# Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
# Copyright (C) 2015-2016 CNRS
#
# This program is free software: you can redistribute it and/or modify
diff --git a/src/schiff.c b/src/schiff.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
* Copyright (C) 2015, 2016 CNRS
*
* This program is free software: you can redistribute it and/or modify
diff --git a/src/schiff_args.c b/src/schiff_args.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
* Copyright (C) 2015, 2016 CNRS
*
* This program is free software: you can redistribute it and/or modify
@@ -102,7 +102,7 @@ print_help(const char* binary)
" --version display version information and exit.\n");
printf("\n");
printf(
-"Copyright (C) 2020 |Meso|Star> (contact@meso-star.com).\n"
+"Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com).\n"
"Copyright (C) 2015, 2016 CNRS. This is free software released under the\n"
"GNU GPL license, version 3 or later. You are free to change or\n"
"redistribute it under certain conditions\n"
diff --git a/src/schiff_geometry.c b/src/schiff_geometry.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
* Copyright (C) 2015, 2016 CNRS
*
* This program is free software: you can redistribute it and/or modify
diff --git a/src/schiff_geometry.h b/src/schiff_geometry.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
* Copyright (C) 2015, 2016 CNRS
*
* This program is free software: you can redistribute it and/or modify
diff --git a/src/schiff_mesh.c b/src/schiff_mesh.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
* Copyright (C) 2015, 2016 CNRS
*
* This program is free software: you can redistribute it and/or modify
diff --git a/src/schiff_mesh.h b/src/schiff_mesh.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
* Copyright (C) 2015, 2016 CNRS
*
* This program is free software: you can redistribute it and/or modify
diff --git a/src/schiff_optical_properties.c b/src/schiff_optical_properties.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
* Copyright (C) 2015, 2016 CNRS
*
* This program is free software: you can redistribute it and/or modify
diff --git a/src/schiff_optical_properties.h b/src/schiff_optical_properties.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
* Copyright (C) 2015, 2016 CNRS
*
* This program is free software: you can redistribute it and/or modify
diff --git a/src/schiff_streambuf.h b/src/schiff_streambuf.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
* Copyright (C) 2015, 2016 CNRS
*
* This program is free software: you can redistribute it and/or modify
diff --git a/src/schiff_streamline.h b/src/schiff_streamline.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
* Copyright (C) 2015, 2016 CNRS
*
* This program is free software: you can redistribute it and/or modify