*! version 7.5 20260331 - DIME Analytics - dimeanalytics@worldbank.org cap program drop ietoolkit program define ietoolkit, rclass qui { version 12.0 * Do not manually edit these locals. They are updated with ad_publish in the adodown workflow local version "7.5" local versionDate "20260331" local cmd "ietoolkit" syntax [anything] version 12 /********************** Error messages **********************/ * Make sure that no arguments were passed if "`anything'" != "" { noi di as error "This command does not take any arguments, write only {it:ietoolkit}" error 198 } /********************** Output **********************/ * Stata versions commands in this package allows when applicable return local stata_target_versions "12 12.0 12.1 13 13.0 13.1 14 14.0 14.1 14.2 15 15.0 15.1 16.0 16.1 17.0 18.0 18.1 18.2 18.3 18.4 18.5 19.0 19.1 19.2 19.3 19.4 19.5" return local dta_target_versions "12 13 14" * Prepare returned locals return local versiondate "`versionDate'" return scalar version = `version' * Display output noi di "" noi di _col(4) "This version of ietoolkit installed is version " _col(54)"`version'" noi di _col(4) "This version of ietoolkit was released on " _col(54)"`versionDate'" } end