From 582528f243bb99e0ce922dda3102d260b90ee4a0 Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Wed, 15 Jun 2016 19:22:24 +0100 Subject: [PATCH 1/2] wrong argument check in latan-resample --- utils/resample.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/resample.cpp b/utils/resample.cpp index 8e3117d..aeb5f6a 100644 --- a/utils/resample.cpp +++ b/utils/resample.cpp @@ -59,7 +59,7 @@ int main(int argc, char *argv[]) opt.addOption("" , "help" , OptParser::OptType::trigger, true, "show this help message and exit"); parsed = opt.parse(argc, argv); - if (!parsed or (opt.getArgs().size() != 1) or opt.gotOption("help")) + if (!parsed or (opt.getArgs().size() != 2) or opt.gotOption("help")) { cerr << "usage: " << argv[0]; cerr << " " << endl; From 91cdfa9f8bfeda21044f9445beb67e1753a5cb23 Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Wed, 15 Jun 2016 19:25:30 +0100 Subject: [PATCH 2/2] preparation for 3.2.1 --- Readme.md | 4 ++++ configure.ac | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 397d877..7542599 100644 --- a/Readme.md +++ b/Readme.md @@ -55,6 +55,10 @@ in the `ci-scripts` directory where `` is where you want LatAnalyze (and For a more customised installation, one first needs to generate the build system by running `./bootstrap.sh` in the root directory. Then the library can be built and installed through the usual GNU mantra `./configure && make && make install`. Use `./configure --help` to obtain a list of possible options for `./configure`. Because Eigen expressions rely a lot on inlining and compiler optimisations it is strongly recommended to set the `CXXFLAGS` variable to `-O3 -march=native -mtune=native`. ## History +#### v3.2.1 +Fix: +* Wrong argument number check in `latan-resample` + #### v3.2 (needs LatCore 1.1) Additions: * 2-pt function fitter `latan-2pt-fit` diff --git a/configure.ac b/configure.ac index 9191118..c1a561e 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Initialization AC_PREREQ([2.63]) -AC_INIT([LatAnalyze],[3.2],[antonin.portelli@me.com],[LatAnalyze]) +AC_INIT([LatAnalyze],[3.2.1],[antonin.portelli@me.com],[LatAnalyze]) AC_CONFIG_AUX_DIR([.buildutils]) AC_CONFIG_SRCDIR([lib/Global.cpp]) AC_CONFIG_SRCDIR([utils/sample_read.cpp])