From 787a261eddc3408c941b24334cac92ef11100aca Mon Sep 17 00:00:00 2001 From: Ulya Trofimovich Date: Sun, 27 Jul 2014 11:20:28 +0300 Subject: [PATCH] Release 0.13.7.2. --- re2c/CHANGELOG | 3 ++- re2c/config_w32.h | 6 +++--- re2c/configure.in | 2 +- re2c/htdocs/index.html | 3 ++- re2c/re2c_docs.sh | 1 + re2c/release.sh | 15 ++++++++++----- 6 files changed, 19 insertions(+), 11 deletions(-) diff --git a/re2c/CHANGELOG b/re2c/CHANGELOG index efbfbcfb..c318ad7b 100644 --- a/re2c/CHANGELOG +++ b/re2c/CHANGELOG @@ -1,5 +1,6 @@ -Version 0.13.8 (20??-??-??) +Version 0.13.7.2 (2014-07-27) ----------------------------- +- Included man page into dist, respect users CXXFLAGS. Version 0.13.7.1 (2014-07-26) ----------------------------- diff --git a/re2c/config_w32.h b/re2c/config_w32.h index edb842c2..6f23e275 100644 --- a/re2c/config_w32.h +++ b/re2c/config_w32.h @@ -59,13 +59,13 @@ #define PACKAGE_NAME "re2c" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "re2c 0.13.8.dev" +#define PACKAGE_STRING "re2c 0.13.7.2" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "re2c" /* Define to the version of this package. */ -#define PACKAGE_VERSION "0.13.8.dev" +#define PACKAGE_VERSION "0.13.7.2" /* The size of a `char', as computed by sizeof. */ #define SIZEOF_CHAR 1 @@ -83,7 +83,7 @@ #define STDC_HEADERS 1 /* Version number of package */ -#define VERSION "0.13.8.dev" +#define VERSION "0.13.7.2" /* Define to empty if `const' does not conform to ANSI C. */ /* #undef const */ diff --git a/re2c/configure.in b/re2c/configure.in index 2665de23..d945e91a 100644 --- a/re2c/configure.in +++ b/re2c/configure.in @@ -1,5 +1,5 @@ AC_PREREQ([2.57]) -AC_INIT(re2c, 0.13.8.dev, re2c-general@lists.sourceforge.net) +AC_INIT(re2c, 0.13.7.2, re2c-general@lists.sourceforge.net) AM_INIT_AUTOMAKE(re2c, $PACKAGE_VERSION) AC_CONFIG_SRCDIR(actions.cc) AM_CONFIG_HEADER(config.h) diff --git a/re2c/htdocs/index.html b/re2c/htdocs/index.html index 0729b898..3225fbec 100755 --- a/re2c/htdocs/index.html +++ b/re2c/htdocs/index.html @@ -68,7 +68,8 @@

Changelog

-

20??-??-?: 0.13.8

+

2014-07-27: 0.13.7.2

+
  • Included man page into dist, respect users CXXFLAGS.
  • 2014-07-26: 0.13.7.1

  • Added missing files to tarball
  • 2014-07-25: 0.13.7

    diff --git a/re2c/re2c_docs.sh b/re2c/re2c_docs.sh index f7f8592e..8fbce9b1 100755 --- a/re2c/re2c_docs.sh +++ b/re2c/re2c_docs.sh @@ -4,4 +4,5 @@ a2x -f manpage re2c.ad # generate htdocs/manual.html from re2c.ad +mkdir -p htdocs asciidoc -o htdocs/manual.html re2c.ad diff --git a/re2c/release.sh b/re2c/release.sh index fc2660f1..99a7bedc 100755 --- a/re2c/release.sh +++ b/re2c/release.sh @@ -1,4 +1,6 @@ -#!/bin/sh -e +#!/bin/bash + +set -e if [ $# -ne 1 ] then @@ -11,15 +13,16 @@ version="$1" # edit version in configure.in lcontext="AC_INIT\(re2c, " rcontext=", re2c-general@lists\.sourceforge\.net\)" -old="[0-9]+(\.[0-9]+)*" +old="[0-9]+(\.[0-9]+)*(\.dev)?" new=$version sed -i -E "s/$lcontext$old$rcontext/$lcontext$new$rcontext/" configure.in ./autogen.sh ./configure make clean -make tests -j5 -make zip dist docs +make -j5 +make tests +make zip dist # dist-check tmpdir=` date +"%Y%m%d%H%M%S%N"` @@ -29,7 +32,9 @@ cd $tmpdir gunzip re2c-$version.tar.gz tar -x -f re2c-$version.tar cd re2c-$version -./configure && make -j5 && make tests +./configure +make -j5 +make tests cd ../.. rm -r $tmpdir -- 2.40.0