User supplied routine can now also return p value for twosample_power
           Some other minor changes
                       Fixed a serious bug in twosample_test  
                         It is now possible to use a routine to generate new simulated data to
            find p values, the parametric bootstrap approach. This is needed for the
            goodness-of-fit/twosample hybrid problem.
            Also some changes to the hidden interior routines 
                          Fixed a minor bug
                        Improved the routines that do power calculations for better speed. 
            Included a timing routine to see whether using a single core is 
            faster than using multiple processing.
            Some minor changes to other routines.            Added routine to allow benchmarking of new user
            supplied tests. Some minor changes to other routines.
                           some minor bug fixes, additions to vignette
                        Added routines for calculating p values adjusted for simultaneous testing
                        fixed a bug in calculation of chi square test, made cpp routines 
            invisible, fixed issue with help titles
                          fixed a code problem in TS_disc_cpp on line 146
            made some changes to the arguments of twosample_power               changed line 66 in TS_cont_cpp.cpp from 
               while ( (x[j]<=sxy[i]) && (j<nx))
            to
               while ( (j<nx) && (x[j]<=sxy[i]) )   
            to avoid heap-buffer-overflow error.   
                           Changed & to && in a TS_cont_cpp.cpp            Changed | to || in a number of the C++ routines per request from the CRAN Team  Added a NEWS.md file to track changes to the
package.
Oct 10, 2022: Added to run_shiny(), added () to function names
          eliminated \dontrun(), added toy examples          changed cat to message          changed Maintainer to Authors@R  Oct. 11, 2022: Eliminated all and , added toy examples Searched and eliminated all empty spaces in DESCRIPTION that I could find.