diff --git a/ChangeLog b/ChangeLog index f35e871db..baba44cf3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-11-03 Petr Mikulik + + * VERSION PATCHLEVEL src/version.c: Declare this version as 4.3 pl 0. + 2006-11-01 Ethan Merritt * docs/gnuplot.doc: Add an entry key for "help file", because otherwise diff --git a/PATCHLEVEL b/PATCHLEVEL index 9041fb2cb..573541ac9 100644 --- a/PATCHLEVEL +++ b/PATCHLEVEL @@ -1 +1 @@ -rc1 +0 diff --git a/VERSION b/VERSION index bf77d5496..69df05f33 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.2 +4.3 diff --git a/src/version.c b/src/version.c index e9eeffae1..f486b8cb7 100644 --- a/src/version.c +++ b/src/version.c @@ -1,5 +1,5 @@ #ifndef lint -static char *RCSid() { return RCSid("$Id: version.c,v 1.70 2006/10/03 13:14:33 mikulik Exp $"); } +static char *RCSid() { return RCSid("$Id: version.c,v 1.71 2006/11/03 15:45:25 mikulik Exp $"); } #endif /* GNUPLOT - version.c */ @@ -39,9 +39,9 @@ static char *RCSid() { return RCSid("$Id: version.c,v 1.70 2006/10/03 13:14:33 m #include "syscfg.h" /* for FAQ_LOCATION */ -const char gnuplot_version[] = "4.2"; -const char gnuplot_patchlevel[] = "rc1"; -const char gnuplot_date[] = "October 2006"; +const char gnuplot_version[] = "4.3"; +const char gnuplot_patchlevel[] = "0"; +const char gnuplot_date[] = "November 2006"; const char gnuplot_copyright[] = "Copyright (C) 1986 - 1993, 1998, 2004, 2006"; const char faq_location[] = FAQ_LOCATION;