Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package surgescript for openSUSE:Factory 
checked in at 2022-12-18 20:04:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/surgescript (Old)
 and      /work/SRC/openSUSE:Factory/.surgescript.new.1835 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "surgescript"

Sun Dec 18 20:04:06 2022 rev:3 rq:1043645 version:0.5.6.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/surgescript/surgescript.changes  2022-09-18 
17:32:28.585815349 +0200
+++ /work/SRC/openSUSE:Factory/.surgescript.new.1835/surgescript.changes        
2022-12-18 20:04:07.472226187 +0100
@@ -1,0 +2,6 @@
+Sun Dec 18 16:06:52 UTC 2022 - Dirk Müller <dmuel...@suse.com>
+
+- update to 0.5.6.1:
+  * Tweaks to the build system
+
+-------------------------------------------------------------------

Old:
----
  surgescript-0.5.6.tar.gz

New:
----
  surgescript-0.5.6.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ surgescript.spec ++++++
--- /var/tmp/diff_new_pack.1roxTZ/_old  2022-12-18 20:04:07.964228964 +0100
+++ /var/tmp/diff_new_pack.1roxTZ/_new  2022-12-18 20:04:07.972229010 +0100
@@ -19,7 +19,7 @@
 
 %define _sover  0_5_6
 Name:           surgescript
-Version:        0.5.6
+Version:        0.5.6.1
 Release:        0
 Summary:        A scripting language for games
 License:        Apache-2.0
@@ -98,6 +98,7 @@
 %{_libdir}/pkgconfig/%{name}.pc
 
 %files -n lib%{name}%{_sover}
+%{_libdir}/lib%{name}.so.0.5.6
 %{_libdir}/lib%{name}.so.%{version}
 
 %changelog

++++++ surgescript-0.5.6.tar.gz -> surgescript-0.5.6.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/CHANGES.md 
new/surgescript-0.5.6.1/CHANGES.md
--- old/surgescript-0.5.6/CHANGES.md    2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/CHANGES.md  2022-09-22 18:04:29.000000000 +0200
@@ -1,5 +1,9 @@
 # Release Notes
 
+## 0.5.6.1 - September 22nd, 2022
+
+* Tweaks to the build system
+
 ## 0.5.6 - September 1st, 2022
 
 * Improved the SurgeScript CLI with a time limit option, the ability to run 
scripts from stdin and optional multithreading support
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/CMakeLists.txt 
new/surgescript-0.5.6.1/CMakeLists.txt
--- old/surgescript-0.5.6/CMakeLists.txt        2022-09-01 01:55:59.000000000 
+0200
+++ new/surgescript-0.5.6.1/CMakeLists.txt      2022-09-22 18:04:29.000000000 
+0200
@@ -8,7 +8,7 @@
 cmake_minimum_required(VERSION 3.2)
 project(
     surgescript
-    VERSION 0.5.6
+    VERSION 0.5.6.1
     LANGUAGES C
 )
 include(GNUInstallDirs)
@@ -131,6 +131,13 @@
 generate_file("misc/info.c")
 generate_file("util/version.h")
 
+# Use relative paths in __FILE__
+function(drop_compilation_paths TARGET)
+    if(NOT MSVC)
+        target_compile_options(${TARGET} PUBLIC 
"-ffile-prefix-map=${CMAKE_SOURCE_DIR}=.")
+    endif()
+endfunction()
+
 # Build the library
 if(NOT WANT_SHARED AND NOT WANT_STATIC)
     message(FATAL_ERROR "Options WANT_SHARED and WANT_STATIC are both set to 
OFF. Nothing to do.")
@@ -145,7 +152,7 @@
         target_link_libraries(surgescript m)
     endif()
     set_target_properties(surgescript PROPERTIES VERSION ${PROJECT_VERSION} 
SOVERSION ${LIB_SOVERSION})
-    install(TARGETS surgescript DESTINATION "${CMAKE_INSTALL_LIBDIR}")
+    drop_compilation_paths(surgescript)
 endif()
 
 if(WANT_STATIC)
@@ -156,13 +163,22 @@
         target_link_libraries(surgescript-static m)
     endif ()
     set_target_properties(surgescript-static PROPERTIES VERSION 
${PROJECT_VERSION})
-    install(TARGETS surgescript-static DESTINATION "${CMAKE_INSTALL_LIBDIR}")
+    drop_compilation_paths(surgescript-static)
 endif()
 
-# Install headers
+# Install the headers
 install(DIRECTORY src/ DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}" 
FILES_MATCHING PATTERN "*.h")
 install(DIRECTORY "${CMAKE_BINARY_DIR}/src/" DESTINATION 
"${CMAKE_INSTALL_INCLUDEDIR}" FILES_MATCHING PATTERN "*.h")
 
+# Install the library
+if(WANT_SHARED)
+    install(TARGETS surgescript DESTINATION "${CMAKE_INSTALL_LIBDIR}")
+endif()
+
+if(WANT_STATIC)
+    install(TARGETS surgescript-static DESTINATION "${CMAKE_INSTALL_LIBDIR}")
+endif()
+
 # Build the SurgeScript CLI
 if(WANT_EXECUTABLE)
     message(STATUS "Will build the SurgeScript CLI")
@@ -177,11 +193,19 @@
     set(LIBTHREAD "")
     set(ENABLE_THREADS 0)
     if(WANT_EXECUTABLE_MULTITHREAD)
-        message(STATUS "Will use multithreading on the SurgeScript CLI")
 
-        # hmmmm...
-        set(LIBTHREAD "pthread")
-        set(ENABLE_THREADS 1)
+        # Header search
+        find_path(THREADS_H NAMES "threads.h" PATHS "${CMAKE_INCLUDE_PATH}")
+        if(NOT THREADS_H)
+            message(WARNING "Can't find threads.h. Will not use multithreading 
on the SurgeScript CLI")
+        else()
+            message(STATUS "Will use multithreading on the SurgeScript CLI")
+            set(ENABLE_THREADS 1)
+
+            # hmmmm...
+            set(LIBTHREAD "pthread")
+        endif()
+
     endif()
 
     # Create the executable
@@ -191,6 +215,7 @@
     target_link_libraries(surgescript.bin ${LIBSURGESCRIPT} ${LIBTHREAD})
     target_include_directories(surgescript.bin PRIVATE src)
     set_target_properties(surgescript.bin PROPERTIES OUTPUT_NAME surgescript)
+    drop_compilation_paths(surgescript.bin)
 
     # WebAssembly
     if(EMSCRIPTEN)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/examples/package.ss 
new/surgescript-0.5.6.1/examples/package.ss
--- old/surgescript-0.5.6/examples/package.ss   2022-09-01 01:55:59.000000000 
+0200
+++ new/surgescript-0.5.6.1/examples/package.ss 2022-09-22 18:04:29.000000000 
+0200
@@ -1,7 +1,7 @@
 //
 // package.ss
 // Package example
-// Copyright 2018, 2019 Alexandre Martins <alemartf(at)gmail(dot)com>
+// Copyright 2018-2019 Alexandre Martins <alemartf(at)gmail(dot)com>
 //
 
 // import the package
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/examples/unit_testing.ss 
new/surgescript-0.5.6.1/examples/unit_testing.ss
--- old/surgescript-0.5.6/examples/unit_testing.ss      2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/examples/unit_testing.ss    2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 //
 // unit_testing.ss
 // A Unit Testing Script for SurgeScript
-// Copyright (C) 2017-2020 Alexandre Martins <alemartf(at)gmail(dot)com>
+// Copyright 2017-2020 Alexandre Martins <alemartf(at)gmail(dot)com>
 //
 
 object "Application"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/mkdocs.yml 
new/surgescript-0.5.6.1/mkdocs.yml
--- old/surgescript-0.5.6/mkdocs.yml    2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/mkdocs.yml  2022-09-22 18:04:29.000000000 +0200
@@ -3,7 +3,7 @@
 site_author: 'Alexandre Martins'
 site_description: 'SurgeScript is a scripting language for games.'
 site_dir: 'docs_html/'
-copyright: 'SurgeScript is a scripting language for games. Copyright © 
2016-2021 Alexandre Martins.'
+copyright: 'SurgeScript is a scripting language for games. Copyright © 
2016-2022 Alexandre Martins.'
 google_analytics: ['UA-120511928-1', 'opensurge2d.org']
 repo_url: 'https://github.com/alemart/surgescript'
 strict: false
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/compiler/asm.c 
new/surgescript-0.5.6.1/src/surgescript/compiler/asm.c
--- old/surgescript-0.5.6/src/surgescript/compiler/asm.c        2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/compiler/asm.c      2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/compiler/asm.h 
new/surgescript-0.5.6.1/src/surgescript/compiler/asm.h
--- old/surgescript-0.5.6/src/surgescript/compiler/asm.h        2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/compiler/asm.h      2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/compiler/lexer.c 
new/surgescript-0.5.6.1/src/surgescript/compiler/lexer.c
--- old/surgescript-0.5.6/src/surgescript/compiler/lexer.c      2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/compiler/lexer.c    2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2019 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/compiler/lexer.h 
new/surgescript-0.5.6.1/src/surgescript/compiler/lexer.h
--- old/surgescript-0.5.6/src/surgescript/compiler/lexer.h      2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/compiler/lexer.h    2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/compiler/nodecontext.h 
new/surgescript-0.5.6.1/src/surgescript/compiler/nodecontext.h
--- old/surgescript-0.5.6/src/surgescript/compiler/nodecontext.h        
2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/compiler/nodecontext.h      
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2019 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/compiler/parser.c 
new/surgescript-0.5.6.1/src/surgescript/compiler/parser.c
--- old/surgescript-0.5.6/src/surgescript/compiler/parser.c     2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/compiler/parser.c   2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2019 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/compiler/parser.h 
new/surgescript-0.5.6.1/src/surgescript/compiler/parser.h
--- old/surgescript-0.5.6/src/surgescript/compiler/parser.h     2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/compiler/parser.h   2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2019 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/compiler/symtable.c 
new/surgescript-0.5.6.1/src/surgescript/compiler/symtable.c
--- old/surgescript-0.5.6/src/surgescript/compiler/symtable.c   2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/compiler/symtable.c 2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/compiler/symtable.h 
new/surgescript-0.5.6.1/src/surgescript/compiler/symtable.h
--- old/surgescript-0.5.6/src/surgescript/compiler/symtable.h   2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/compiler/symtable.h 2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/compiler/token.c 
new/surgescript-0.5.6.1/src/surgescript/compiler/token.c
--- old/surgescript-0.5.6/src/surgescript/compiler/token.c      2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/compiler/token.c    2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/compiler/token.h 
new/surgescript-0.5.6.1/src/surgescript/compiler/token.h
--- old/surgescript-0.5.6/src/surgescript/compiler/token.h      2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/compiler/token.h    2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/misc/pack-windows.sh 
new/surgescript-0.5.6.1/src/surgescript/misc/pack-windows.sh
--- old/surgescript-0.5.6/src/surgescript/misc/pack-windows.sh  2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/misc/pack-windows.sh        
2022-09-22 18:04:29.000000000 +0200
@@ -1,6 +1,5 @@
 #!/bin/bash
 # This utility packs the Windows build of SurgeScript
-# Copyright 2016-2021 Alexandre Martins
 
 UNIX2DOS="todos" #"unix2dos"
 SOURCE_FOLDER="../../.."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/runtime/heap.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/heap.c
--- old/surgescript-0.5.6/src/surgescript/runtime/heap.c        2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/heap.c      2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/runtime/heap.h 
new/surgescript-0.5.6.1/src/surgescript/runtime/heap.h
--- old/surgescript-0.5.6/src/surgescript/runtime/heap.h        2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/heap.h      2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/runtime/object.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/object.c
--- old/surgescript-0.5.6/src/surgescript/runtime/object.c      2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/object.c    2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2019, 2021 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/runtime/object.h 
new/surgescript-0.5.6.1/src/surgescript/runtime/object.h
--- old/surgescript-0.5.6/src/surgescript/runtime/object.h      2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/object.h    2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/object_manager.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/object_manager.c
--- old/surgescript-0.5.6/src/surgescript/runtime/object_manager.c      
2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/object_manager.c    
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018, 2021 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/object_manager.h 
new/surgescript-0.5.6.1/src/surgescript/runtime/object_manager.h
--- old/surgescript-0.5.6/src/surgescript/runtime/object_manager.h      
2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/object_manager.h    
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018, 2021 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/runtime/program.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/program.c
--- old/surgescript-0.5.6/src/surgescript/runtime/program.c     2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/program.c   2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2021 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/runtime/program.h 
new/surgescript-0.5.6.1/src/surgescript/runtime/program.h
--- old/surgescript-0.5.6/src/surgescript/runtime/program.h     2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/program.h   2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/program_operators.h 
new/surgescript-0.5.6.1/src/surgescript/runtime/program_operators.h
--- old/surgescript-0.5.6/src/surgescript/runtime/program_operators.h   
2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/program_operators.h 
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2019 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/program_pool.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/program_pool.c
--- old/surgescript-0.5.6/src/surgescript/runtime/program_pool.c        
2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/program_pool.c      
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2019 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/program_pool.h 
new/surgescript-0.5.6.1/src/surgescript/runtime/program_pool.h
--- old/surgescript-0.5.6/src/surgescript/runtime/program_pool.h        
2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/program_pool.h      
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/runtime/renv.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/renv.c
--- old/surgescript-0.5.6/src/surgescript/runtime/renv.c        2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/renv.c      2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/runtime/renv.h 
new/surgescript-0.5.6.1/src/surgescript/runtime/renv.h
--- old/surgescript-0.5.6/src/surgescript/runtime/renv.h        2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/renv.h      2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/sslib/application.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/application.c
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/application.c   
2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/application.c 
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/sslib/arguments.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/arguments.c
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/arguments.c     
2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/arguments.c   
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018, 2020 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/sslib/array.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/array.c
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/array.c 2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/array.c       
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2020 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/sslib/boolean.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/boolean.c
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/boolean.c       
2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/boolean.c     
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/sslib/console.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/console.c
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/console.c       
2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/console.c     
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/sslib/date.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/date.c
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/date.c  2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/date.c        
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/sslib/dictionary.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/dictionary.c
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/dictionary.c    
2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/dictionary.c  
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2020 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/runtime/sslib/gc.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/gc.c
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/gc.c    2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/gc.c  2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/sslib/math.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/math.c
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/math.c  2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/math.c        
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2019 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/sslib/number.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/number.c
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/number.c        
2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/number.c      
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/sslib/object.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/object.c
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/object.c        
2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/object.c      
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2019, 2021 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/sslib/plugin.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/plugin.c
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/plugin.c        
2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/plugin.c      
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/sslib/sslib.h 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/sslib.h
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/sslib.h 2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/sslib.h       
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/sslib/string.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/string.c
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/string.c        
2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/string.c      
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2019 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/sslib/surgescript.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/surgescript.c
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/surgescript.c   
2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/surgescript.c 
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/sslib/system.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/system.c
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/system.c        
2022-09-01 01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/system.c      
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/sslib/tags.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/tags.c
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/tags.c  2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/tags.c        
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/sslib/temp.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/temp.c
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/temp.c  2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/temp.c        
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/sslib/time.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/time.c
--- old/surgescript-0.5.6/src/surgescript/runtime/sslib/time.c  2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/sslib/time.c        
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/runtime/stack.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/stack.c
--- old/surgescript-0.5.6/src/surgescript/runtime/stack.c       2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/stack.c     2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/runtime/stack.h 
new/surgescript-0.5.6.1/src/surgescript/runtime/stack.h
--- old/surgescript-0.5.6/src/surgescript/runtime/stack.h       2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/stack.h     2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/tag_system.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/tag_system.c
--- old/surgescript-0.5.6/src/surgescript/runtime/tag_system.c  2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/tag_system.c        
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/surgescript-0.5.6/src/surgescript/runtime/tag_system.h 
new/surgescript-0.5.6.1/src/surgescript/runtime/tag_system.h
--- old/surgescript-0.5.6/src/surgescript/runtime/tag_system.h  2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/tag_system.h        
2022-09-22 18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/runtime/variable.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/variable.c
--- old/surgescript-0.5.6/src/surgescript/runtime/variable.c    2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/variable.c  2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2019, 2021 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/runtime/variable.h 
new/surgescript-0.5.6.1/src/surgescript/runtime/variable.h
--- old/surgescript-0.5.6/src/surgescript/runtime/variable.h    2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/variable.h  2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/runtime/vm.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/vm.c
--- old/surgescript-0.5.6/src/surgescript/runtime/vm.c  2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/vm.c        2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018, 2021 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/runtime/vm.h 
new/surgescript-0.5.6.1/src/surgescript/runtime/vm.h
--- old/surgescript-0.5.6/src/surgescript/runtime/vm.h  2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/vm.h        2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018, 2021  Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022  Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/runtime/vm_time.c 
new/surgescript-0.5.6.1/src/surgescript/runtime/vm_time.c
--- old/surgescript-0.5.6/src/surgescript/runtime/vm_time.c     2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/vm_time.c   2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2021  Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/runtime/vm_time.h 
new/surgescript-0.5.6.1/src/surgescript/runtime/vm_time.h
--- old/surgescript-0.5.6/src/surgescript/runtime/vm_time.h     2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/runtime/vm_time.h   2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2021  Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/util/fasthash.c 
new/surgescript-0.5.6.1/src/surgescript/util/fasthash.c
--- old/surgescript-0.5.6/src/surgescript/util/fasthash.c       2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/util/fasthash.c     2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2019 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/util/fasthash.h 
new/surgescript-0.5.6.1/src/surgescript/util/fasthash.h
--- old/surgescript-0.5.6/src/surgescript/util/fasthash.h       2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/util/fasthash.h     2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2019 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/util/ssarray.h 
new/surgescript-0.5.6.1/src/surgescript/util/ssarray.h
--- old/surgescript-0.5.6/src/surgescript/util/ssarray.h        2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/util/ssarray.h      2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2018 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/util/transform.c 
new/surgescript-0.5.6.1/src/surgescript/util/transform.c
--- old/surgescript-0.5.6/src/surgescript/util/transform.c      2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/util/transform.c    2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2019 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/util/transform.h 
new/surgescript-0.5.6.1/src/surgescript/util/transform.h
--- old/surgescript-0.5.6/src/surgescript/util/transform.h      2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/util/transform.h    2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2019 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/util/util.c 
new/surgescript-0.5.6.1/src/surgescript/util/util.c
--- old/surgescript-0.5.6/src/surgescript/util/util.c   2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/util/util.c 2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2021 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/util/util.h 
new/surgescript-0.5.6.1/src/surgescript/util/util.h
--- old/surgescript-0.5.6/src/surgescript/util/util.h   2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/util/util.h 2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2021 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript/util/version.h.in 
new/surgescript-0.5.6.1/src/surgescript/util/version.h.in
--- old/surgescript-0.5.6/src/surgescript/util/version.h.in     2022-09-01 
01:55:59.000000000 +0200
+++ new/surgescript-0.5.6.1/src/surgescript/util/version.h.in   2022-09-22 
18:04:29.000000000 +0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2021 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/surgescript-0.5.6/src/surgescript.h 
new/surgescript-0.5.6.1/src/surgescript.h
--- old/surgescript-0.5.6/src/surgescript.h     2022-09-01 01:55:59.000000000 
+0200
+++ new/surgescript-0.5.6.1/src/surgescript.h   2022-09-22 18:04:29.000000000 
+0200
@@ -1,7 +1,7 @@
 /*
  * SurgeScript
  * A scripting language for games
- * Copyright 2016-2021 Alexandre Martins <alemartf(at)gmail(dot)com>
+ * Copyright 2016-2022 Alexandre Martins <alemartf(at)gmail(dot)com>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Reply via email to