guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] branch master updated: Bump objcode minor version in pre


From: Andy Wingo
Subject: [Guile-commits] branch master updated: Bump objcode minor version in preparation for new stable series
Date: Mon, 13 Jan 2020 02:34:00 -0500

This is an automated email from the git hooks/post-receive script.

wingo pushed a commit to branch master
in repository guile.

The following commit(s) were added to refs/heads/master by this push:
     new 53a3602  Bump objcode minor version in preparation for new stable 
series
53a3602 is described below

commit 53a3602b20879a4cc82aab2423afa242d49db5db
Author: Andy Wingo <address@hidden>
AuthorDate: Mon Jan 13 08:01:40 2020 +0100

    Bump objcode minor version in preparation for new stable series
    
    * libguile/loader.h (SCM_OBJCODE_MINIMUM_MINOR_VERSION):
      (SCM_OBJCODE_MINOR_VERSION):
    * module/system/vm/assembler.scm (*bytecode-minor-version*): Bump.
---
 libguile/loader.h              | 6 +++---
 module/system/vm/assembler.scm | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/libguile/loader.h b/libguile/loader.h
index 979d560..3f7d4d4 100644
--- a/libguile/loader.h
+++ b/libguile/loader.h
@@ -1,4 +1,4 @@
-/* Copyright 2001,2009-2015,2018
+/* Copyright 2001,2009-2015,2018,2020
      Free Software Foundation, Inc.
 
    This file is part of Guile.
@@ -39,8 +39,8 @@
 
 /* Major and minor versions must be single characters. */
 #define SCM_OBJCODE_MAJOR_VERSION 4
-#define SCM_OBJCODE_MINIMUM_MINOR_VERSION 1
-#define SCM_OBJCODE_MINOR_VERSION 1
+#define SCM_OBJCODE_MINIMUM_MINOR_VERSION 2
+#define SCM_OBJCODE_MINOR_VERSION 2
 #define SCM_OBJCODE_MAJOR_VERSION_STRING        \
   SCM_CPP_STRINGIFY(SCM_OBJCODE_MAJOR_VERSION)
 #define SCM_OBJCODE_MINOR_VERSION_STRING        \
diff --git a/module/system/vm/assembler.scm b/module/system/vm/assembler.scm
index 55417df..022a402 100644
--- a/module/system/vm/assembler.scm
+++ b/module/system/vm/assembler.scm
@@ -1,6 +1,6 @@
 ;;; Guile bytecode assembler
 
-;;; Copyright (C) 2001, 2009-2019 Free Software Foundation, Inc.
+;;; Copyright (C) 2001, 2009-2020 Free Software Foundation, Inc.
 ;;;
 ;;; This library is free software; you can redistribute it and/or
 ;;; modify it under the terms of the GNU Lesser General Public
@@ -2119,7 +2119,7 @@ needed."
 
 ;; FIXME: Define these somewhere central, shared with C.
 (define *bytecode-major-version* #x0300)
-(define *bytecode-minor-version* 1)
+(define *bytecode-minor-version* 2)
 
 (define (link-dynamic-section asm text rw rw-init frame-maps)
   "Link the dynamic section for an ELF image with bytecode @var{text},



reply via email to

[Prev in Thread] Current Thread [Next in Thread]