From: Ulya Trofimovich Date: Mon, 27 Aug 2018 21:50:54 +0000 (+0100) Subject: Release 1.1. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c04137d803ed24d6d0be521024a088b7e5348632;p=re2c Release 1.1. --- diff --git a/src/conf.py b/src/conf.py index cc694964..d48a4588 100644 --- a/src/conf.py +++ b/src/conf.py @@ -50,7 +50,7 @@ master_doc = 'index' # General information about the project. project = u're2c' -copyright = u'2016, re2c devs' +copyright = u'2018, re2c devs' author = u're2c devs' # The version info for the project you're documenting, acts as replacement for @@ -58,9 +58,9 @@ author = u're2c devs' # built documents. # # The short X.Y version. -version = '1.0.3' +version = '1.1' # The full version, including alpha/beta/rc tags. -release = '1.0.3' +release = '1.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/src/examples/09_etc_passwd.i--tags.re b/src/examples/09_etc_passwd.i--tags.re index 6564110e..7210f4e8 100644 --- a/src/examples/09_etc_passwd.i--tags.re +++ b/src/examples/09_etc_passwd.i--tags.re @@ -5,7 +5,7 @@ static int lex(const char *YYCURSOR) { - const char *YYMARKER, *n, *p, *u, *g, *i, *h, *c; + const char *YYMARKER, *n, *p, *u, *g, *f, *h, *c; /*!stags:re2c format = 'const char *@@;'; */ loop: /*!re2c @@ -31,14 +31,14 @@ loop: @p pass sep @u uid sep @g gid sep - @i info sep + @f info sep @h home sep @c cmd eol { printf("user: %.*s\n", (int)(p - n) - 1, n); printf("password: %.*s\n", (int)(u - p) - 1, p); printf("UID: %.*s\n", (int)(g - u) - 1, u); - printf("GID: %.*s\n", (int)(i - g) - 1, g); - printf("info: %.*s\n", (int)(h - i) - 1, i); + printf("GID: %.*s\n", (int)(f - g) - 1, g); + printf("info: %.*s\n", (int)(h - f) - 1, f); printf("home: %.*s\n", (int)(c - h) - 1, h); printf("command: %.*s\n", (int)(YYCURSOR - c - 1), c); printf("\n"); diff --git a/src/feed/feed/atom.xml b/src/feed/feed/atom.xml index 3ce3d1d4..a8d11f71 100644 --- a/src/feed/feed/atom.xml +++ b/src/feed/feed/atom.xml @@ -153,4 +153,21 @@ + + + Release 1.1 + + http://re2c.org/news/release_notes/1_1.html + 2018-08-27T23:00:00Z + +
+ Release re2c-1.1 (release notes). +
+
+ + Ulya Trofimovich + skvadrik@gmail.com + +
+ diff --git a/src/index.rst b/src/index.rst index 2363ab3d..930598d1 100644 --- a/src/index.rst +++ b/src/index.rst @@ -48,6 +48,7 @@ Features News & updates -------------- +* `Release 1.1 `_ * `Release 1.0.3 `_ * `Release 1.0.2 `_ * `Release 1.0.1 `_ diff --git a/src/install/install.rst b/src/install/install.rst index 2ae6fab3..0c500036 100644 --- a/src/install/install.rst +++ b/src/install/install.rst @@ -13,6 +13,7 @@ You can find other releases `here