From 0c57763327ba6a5e317d299133d365a2b0b953e4 Mon Sep 17 00:00:00 2001
From: Mikael Djurfeldt <mikael@djurfeldt.com>
Date: Mon, 3 Apr 2023 21:45:59 +0200
Subject: [PATCH] Version 1.2.1

---
 NEWS         | 18 ++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 19 insertions(+), 1 deletion(-)

diff --git a/NEWS b/NEWS
index 21da9d6..59da817 100644
--- a/NEWS
+++ b/NEWS
@@ -3,6 +3,24 @@ Copyright (C) 2009, 2010, 2019, 2020, 2021, 2023 INCF
 
 Please send MUSIC bug reports to music-bugs@incf.org.
 
+
+Changes in 1.2.1:
+
+* python support
+
+** Remove reliance on deprecated distutils
+
+Don't rely on distutils which is deprecated and will disappear in
+Python 3.12.
+
+** Fix problems with Automake putting python files in wrong places
+
+On Debian systems, the autotools build system 1) placed python modules
+in the site-packages directory when they should have been placed in
+the dist-packages directory. Also, 2) if prefix was /usr/local, an
+extra local was added for library installation due to a buggy
+autotools aclocal macro. These problems have now been circumvented.
+
 
 Changes in 1.2.0:
 
diff --git a/configure.ac b/configure.ac
index c4cdc91..856b541 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
 dnl Process this file with autoconf to produce configure.
-AC_INIT(music, 1.2.0)
+AC_INIT(music, 1.2.1)
 AM_INIT_AUTOMAKE
 AM_CONFIG_HEADER([config.h])
 AM_MAINTAINER_MODE
-- 
GitLab