diff --git a/ChangeLog b/ChangeLog index 4f457c4..e672ffe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2022-09-20 Peter McGoron + * Change ARM handler to no longer handle memory automatically + (all memory must be managed by the application). + + * Change version to v3.0.0-mcgoron-dev + 2016-04-03 Stefan Richter * configure.ac, Changelog, NEWS: update to version 2.1.2 diff --git a/configure.ac b/configure.ac index 4eef356..257db2e 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ # process this file with autoconf to get a configure script -AC_INIT(libraw1394, 2.1.2) +AC_INIT(libraw1394, 3.0.0-mcgoron-dev) AC_CONFIG_SRCDIR(src/raw1394.h) AM_CONFIG_HEADER(config.h) diff --git a/src/eventloop.c b/src/eventloop.c index d6d3bd2..f3de7bc 100644 --- a/src/eventloop.c +++ b/src/eventloop.c @@ -4,6 +4,7 @@ * Copyright (C) 1999,2000,2001,2002 Andreas Bombe * 2002 Manfred Weihs * 2002 Christian Toegel + * Copyright (C) 2022 Peter McGoron * * This library is licensed under the GNU Lesser General Public License (LGPL), * version 2.1 or later. See the file COPYING.LIB in the distribution for diff --git a/src/fw.c b/src/fw.c index 27eb8b6..b87bdff 100644 --- a/src/fw.c +++ b/src/fw.c @@ -3,6 +3,7 @@ * raw1394.c -- Emulation of the raw1394 API on the fw stack * * Copyright (C) 2007 Kristian Hoegsberg + * Copyright (C) 2022 Peter McGoron * * This library is licensed under the GNU Lesser General Public License (LGPL), * version 2.1 or later. See the file COPYING.LIB in the distribution for diff --git a/src/fw.h b/src/fw.h index 2d7d90c..fa06e51 100644 --- a/src/fw.h +++ b/src/fw.h @@ -3,6 +3,7 @@ * fw.h -- Internal header file for firewire raw1394 emulation * * Copyright (C) 2007 Kristian Hoegsberg + * Copyright (C) 2022 Peter McGoron * * This library is licensed under the GNU Lesser General Public License (LGPL), * version 2.1 or later. See the file COPYING.LIB in the distribution for diff --git a/src/raw1394.h b/src/raw1394.h index e3027fd..4f891f6 100644 --- a/src/raw1394.h +++ b/src/raw1394.h @@ -4,6 +4,7 @@ * Copyright (C) 1999-2004 Andreas Bombe, Dan Maas, Manfred Weihs, and * Christian Toegel * Copyright (C) 2008 Dan Dennedy + * Copyright (C) 2022 Peter McGoron * * This library is licensed under the GNU Lesser General Public License (LGPL), * version 2.1 or later. See the file COPYING.LIB in the distribution for