Skip to content

Commit

Permalink
release 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Oct 19, 2014
1 parent 564d0ab commit d6a0be8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
2014-10-19 Dirk Eddelbuettel <[email protected]>

* configure.ac: Mark as release 0.2.1

* littler.c: Minor whitespace changes for 'r --version'

* examples/*.r: Add proper copyright and license header for remaining
files

2014-10-13 Dirk Eddelbuettel <[email protected]>

* examples/install.r: Remove temporary rds files matching libloc or
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

# Every other copy of the package version number gets its value from here
AC_INIT(littler,0.2.0)
AC_INIT(littler,0.2.1)

# Look for ancillary configure tools in tools
AC_CONFIG_AUX_DIR(tools)
Expand Down
12 changes: 6 additions & 6 deletions littler.c
Original file line number Diff line number Diff line change
Expand Up @@ -390,16 +390,16 @@ void showHelpAndExit() {

void showVersionAndExit() {
char txt[64];
printf("%s ('%s') version %s\n\tgit revision %s as of %s\n\tbuilt at %s on %s\n",
printf("%s ('%s') version %s\n\ngit revision %s as of %s\nbuilt at %s on %s\n",
binaryName, programName, VERSION,
gitrevision, gitdate, compiletime, compiledate);
printf("\tusing GNU R ");
printf("using GNU R ");
snprintf(txt, 63, "%d", R_SVN_REVISION);
if(strcmp(txt, "unknown")==0) {
if (strcmp(txt, "unknown")==0) {
printf("Version %s.%s %s (%s-%s-%s)",
R_MAJOR, R_MINOR, R_STATUS, R_YEAR, R_MONTH, R_DAY);
} else {
if(strlen(R_STATUS)==0){
if (strlen(R_STATUS)==0) {
printf("Version %s.%s (%s-%s-%s)",
R_MAJOR, R_MINOR, R_YEAR, R_MONTH, R_DAY);
}
Expand All @@ -409,7 +409,7 @@ void showVersionAndExit() {
R_SVN_REVISION);
}
}
printf("\n\nCopyright (C) 2006 - 2014 Jeffrey Horner and Dirk Eddelbuettel\n"
printf("\n\nCopyright (C) 2006 - 2014 Jeffrey Horner and Dirk Eddelbuettel\n"
"\n"
"%s is free software and comes with ABSOLUTELY NO WARRANTY.\n"
"You are welcome to redistribute it under the terms of the\n"
Expand All @@ -432,7 +432,7 @@ void showUsageAndExit() {
"The third use is in standard compound command-line expressions common\n"
"under Unix (so called 'command pipes') as '%s' can take arguments\n"
"from stdin if the special filename '-' is used to select stdin.\n\n"
"The fourth use is in on-tge-fly evaluation of R expressions supplied\n"
"The fourth use is in on-the-fly evaluation of R expressions supplied\n"
"via the -e or --eval options to provide a quick R expression tester\n"
"and calculator.\n\n"
"More documentation is provided in the '%s' manual page and via\n"
Expand Down

0 comments on commit d6a0be8

Please sign in to comment.