From ca771940cc9c019a2f77c2a4faa7f3b0525729c5 Mon Sep 17 00:00:00 2001 From: yui-knk Date: Tue, 31 Oct 2023 11:22:05 +0900 Subject: [PATCH] Bump up v1.7.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 a5fb7d52..106e2db8 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.7.1"; // TODO: parse from Cparse.c + public static final String RACC_VERSION = "1.7.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 84f591c7..24037275 100644 --- a/ext/racc/cparse/cparse.c +++ b/ext/racc/cparse/cparse.c @@ -22,7 +22,7 @@ Important Constants ----------------------------------------------------------------------- */ -#define RACC_VERSION "1.7.1" +#define RACC_VERSION "1.7.2" #define DEFAULT_TOKEN -1 #define ERROR_TOKEN 1 diff --git a/lib/racc/info.rb b/lib/racc/info.rb index dcce9b93..6129f9b9 100644 --- a/lib/racc/info.rb +++ b/lib/racc/info.rb @@ -12,7 +12,7 @@ #++ module Racc - VERSION = '1.7.2.dev.1' + VERSION = '1.7.2' Version = VERSION Copyright = 'Copyright (c) 1999-2006 Minero Aoki' end