From patchwork Sat Apr 30 21:16:54 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Botcazou X-Patchwork-Id: 93524 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 5CF8F1007D1 for ; Sun, 1 May 2011 07:17:08 +1000 (EST) Received: (qmail 21390 invoked by alias); 30 Apr 2011 21:17:06 -0000 Received: (qmail 21381 invoked by uid 22791); 30 Apr 2011 21:17:06 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from mel.act-europe.fr (HELO mel.act-europe.fr) (194.98.77.210) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 30 Apr 2011 21:16:51 +0000 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id E5902CB0378 for ; Sat, 30 Apr 2011 23:16:49 +0200 (CEST) Received: from mel.act-europe.fr ([127.0.0.1]) by localhost (smtp.eu.adacore.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id E-pk3zaUtfEQ for ; Sat, 30 Apr 2011 23:16:46 +0200 (CEST) Received: from new-host-2.home (ADijon-552-1-112-155.w90-33.abo.wanadoo.fr [90.33.191.155]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mel.act-europe.fr (Postfix) with ESMTP id D9346CB0277 for ; Sat, 30 Apr 2011 23:16:46 +0200 (CEST) From: Eric Botcazou To: gcc-patches@gcc.gnu.org Subject: [Ada] Bump library version number Date: Sat, 30 Apr 2011 23:16:54 +0200 User-Agent: KMail/1.9.9 MIME-Version: 1.0 Message-Id: <201104302316.54622.ebotcazou@adacore.com> Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Bootstrapped/regtested on x86_64-suse-linux, applied on the mainline. 2011-04-30 Eric Botcazou * gnatvsn.ads (Library_Version): Bump to 4.7. (Current_Year): Bump to 2011. Index: gnatvsn.ads =================================================================== --- gnatvsn.ads (revision 173209) +++ gnatvsn.ads (working copy) @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2010, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2011, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -82,7 +82,7 @@ package Gnatvsn is -- Prefix generated by binder. If it is changed, be sure to change -- GNAT.Compiler_Version.Ver_Prefix as well. - Library_Version : constant String := "4.6"; + Library_Version : constant String := "4.7"; -- Library version. This value must be updated when the compiler -- version number Gnat_Static_Version_String is updated. -- @@ -92,7 +92,7 @@ package Gnatvsn is Verbose_Library_Version : constant String := "GNAT Lib v" & Library_Version; -- Version string stored in e.g. ALI files - Current_Year : constant String := "2010"; + Current_Year : constant String := "2011"; -- Used in printing copyright messages end Gnatvsn;