From 8d1c1ed79e2c85ec54b9fb470f7171b34ae3b7e2 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Fri, 23 Dec 2022 09:42:51 +0900 Subject: [PATCH] Bump version to 1.6.2 --- ext/racc/com/headius/racc/Cparse.java | 2 +- ext/racc/cparse/cparse.c | 2 +- lib/racc/info.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/racc/com/headius/racc/Cparse.java b/ext/racc/com/headius/racc/Cparse.java index be19e532..b41738a4 100644 --- a/ext/racc/com/headius/racc/Cparse.java +++ b/ext/racc/com/headius/racc/Cparse.java @@ -45,7 +45,7 @@ import org.jruby.runtime.load.Library; public class Cparse implements Library { - public static final String RACC_VERSION = "1.6.1"; // TODO: parse from Cparse.c + public static final String RACC_VERSION = "1.6.2"; // TODO: parse from Cparse.c public enum TokenType { DEFAULT(-1), diff --git a/ext/racc/cparse/cparse.c b/ext/racc/cparse/cparse.c index c11b479a..f752eb77 100644 --- a/ext/racc/cparse/cparse.c +++ b/ext/racc/cparse/cparse.c @@ -22,7 +22,7 @@ Important Constants ----------------------------------------------------------------------- */ -#define RACC_VERSION "1.6.1" +#define RACC_VERSION "1.6.2" #define DEFAULT_TOKEN -1 #define ERROR_TOKEN 1 diff --git a/lib/racc/info.rb b/lib/racc/info.rb index f19987e6..37bff7ed 100644 --- a/lib/racc/info.rb +++ b/lib/racc/info.rb @@ -11,7 +11,7 @@ #++ module Racc - VERSION = '1.6.1' + VERSION = '1.6.2' Version = VERSION Copyright = 'Copyright (c) 1999-2006 Minero Aoki' end