Index: [thread] [date] [author] [stats]
  From: markus schnalke <meillo@marmaro.de>
  To  : <masqmail@marmaro.de>
  Date: Mon, 19 Jul 2010 15:43:00 +0200

Wrong version string in 0.2.27

Hoi,

unfortunately, I released version 0.2.27 with the version number
`0.2.26' in the sources. Hence it introduces itself as 0.2.26 although
it is 0.2.27.

If you want to patch it yourself apply:

    --- a/configure.ac      Sun Jul 18 23:01:49 2010 +0200
    +++ b/configure.ac      Mon Jul 19 12:32:21 2010 +0200
    @@ -1,7 +1,7 @@
     dnl Process this file with autoconf to produce a configure script.
     
     AC_PREREQ(2.59)
    -AC_INIT(masqmail, 0.2.26, meillo@marmaro.de)
    +AC_INIT(masqmail, 0.2.27, meillo@marmaro.de)
     AC_CONFIG_SRCDIR([src/masqmail.c])
     AM_CONFIG_HEADER(config.h)
     AM_INIT_AUTOMAKE()

and run `autoconf' afterwards. Alternatively to running autoconf, you
can replace each occurence of `0.2.26' with `0.2.27' in configure*:

    for i in configure* ; do
        ed - "$i" <<!
    g,0\.2\.26,s,,0.2.27,g
    w
    q
    !
    done


What do you think:

Is this enough reason to release 0.2.28?

Should I add a patch or the above script to the website?

How else should I act?

... or just leave it

I would be pleased to hear what you think. (I plan to release 0.2.28
in the next days anyway.)


Ahh, not to forget: I definately don't want to make this mistake
again, hence I wrote a small script to check the version numbers in
the code:
http://hg.marmaro.de/masqmail-0.2/file/0f0e4e7cd762/misc/list-versions


Sorry for the inconvenience.


meillo


Index: [thread] [date] [author] [stats]