From 6927f5e667be87b19ad015bdc838153213a4869f19b66eae6b4583ea4ec4c667 Mon Sep 17 00:00:00 2001
From: Dirk Stoecker <opensuse@dstoecker.de>
Date: Thu, 20 Apr 2023 13:24:46 +0000
Subject: [PATCH] Accepting request 1080635 from
 home:polslinux:branches:science

- Update to 4.6.1:
  * Do not automatically by default set prefix higher than kilo for meter,
    gram, higher than 1 (no prefix) for second and litre, or lower than 1
    for byte and bit
  * Do not use recently introduced SI prefixes (R, Q, r, q)
    automatically by default
  * Do not set automatic prefix if resulting multiplier is
    less than 1 or greater than 1000, with some exceptions (e.g. km)
  * Default prefix unit property (use for gram, and few other units,
    instead of hard coded value)
  * Option to change symbols used for output of digits 10 and 11 in
    duodecimal numbers (use A and B as default digits)
  * Allow the same variable left and right of the equals sign (e.g. var=var+2),
    in variable assignment without colon, if the variable exists and the
    previous value is known
  * Use Unicode symbol for minus in scientific e notation
  * Do not show multiplier if exactly 1, in HTML output of scientific notation
  * Prefer Nm (torque) over J when the result is a vector with three components
  * Add "amp" abbreviation to ampere unit, and "thou" name for 1/1000 in (mil)
  * Fix unit order for Nm and Ws
  * Fix conversion from ounce (interpreted as fluid ounce) to litre with prefix
  * Fix automatic reactivation of global object after deletion of conflicting object
  * Fix parsing of scientific e notation when the number is extremely large and
    exponentiation fails because of floating point overflow
  * Fixes for output of scientific notation using number bases other than decimal
  * Fix prefix selection in denominator when multiplier is higher than the
    value of the largest prefix
  * Fix segfault in multisolve()
  * Don't show anything on empty input
  * Support "help [OPTION]" and "help set [OPTION]" command to display

OBS-URL: https://build.opensuse.org/request/show/1080635
OBS-URL: https://build.opensuse.org/package/show/science/qalculate?expand=0&rev=18
---
 libqalculate-4.5.1.tar.gz |  3 ---
 libqalculate-4.6.1.tar.gz |  3 +++
 qalculate.changes         | 46 +++++++++++++++++++++++++++++++++++++++
 qalculate.spec            |  2 +-
 4 files changed, 50 insertions(+), 4 deletions(-)
 delete mode 100644 libqalculate-4.5.1.tar.gz
 create mode 100644 libqalculate-4.6.1.tar.gz

diff --git a/libqalculate-4.5.1.tar.gz b/libqalculate-4.5.1.tar.gz
deleted file mode 100644
index 9ef2b35..0000000
--- a/libqalculate-4.5.1.tar.gz
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:230c28f067c02a486252d6ea9a206ffc2b6803ae0430696f9e56611bece20585
-size 2604629
diff --git a/libqalculate-4.6.1.tar.gz b/libqalculate-4.6.1.tar.gz
new file mode 100644
index 0000000..f4522a1
--- /dev/null
+++ b/libqalculate-4.6.1.tar.gz
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ed087bfdedea0fd0eb26eb37a25e4c55caccfe96d83933a3573c93241458cab3
+size 2610769
diff --git a/qalculate.changes b/qalculate.changes
index 02c2054..cad1f6c 100644
--- a/qalculate.changes
+++ b/qalculate.changes
@@ -1,3 +1,49 @@
+-------------------------------------------------------------------
+Thu Apr 20 09:20:06 UTC 2023 - Paolo Stivanin <info@paolostivanin.com>
+
+- Update to 4.6.1:
+  * Do not automatically by default set prefix higher than kilo for meter,
+    gram, higher than 1 (no prefix) for second and litre, or lower than 1
+    for byte and bit
+  * Do not use recently introduced SI prefixes (R, Q, r, q)
+    automatically by default
+  * Do not set automatic prefix if resulting multiplier is
+    less than 1 or greater than 1000, with some exceptions (e.g. km)
+  * Default prefix unit property (use for gram, and few other units,
+    instead of hard coded value)
+  * Option to change symbols used for output of digits 10 and 11 in
+    duodecimal numbers (use A and B as default digits)
+  * Allow the same variable left and right of the equals sign (e.g. var=var+2),
+    in variable assignment without colon, if the variable exists and the
+    previous value is known
+  * Use Unicode symbol for minus in scientific e notation
+  * Do not show multiplier if exactly 1, in HTML output of scientific notation
+  * Prefer Nm (torque) over J when the result is a vector with three components
+  * Add "amp" abbreviation to ampere unit, and "thou" name for 1/1000 in (mil)
+  * Fix unit order for Nm and Ws
+  * Fix conversion from ounce (interpreted as fluid ounce) to litre with prefix
+  * Fix automatic reactivation of global object after deletion of conflicting object
+  * Fix parsing of scientific e notation when the number is extremely large and
+    exponentiation fails because of floating point overflow
+  * Fixes for output of scientific notation using number bases other than decimal
+  * Fix prefix selection in denominator when multiplier is higher than the
+    value of the largest prefix
+  * Fix segfault in multisolve()
+  * Don't show anything on empty input
+  * Support "help [OPTION]" and "help set [OPTION]" command to display
+    description for a single set option
+  * Fix division and exponentiation of scalar by matrix/vector, e.g. 4./[8 4.5]
+  * Improve parsing of element-wise operators with comma as decimal separator
+  * Fix rref() with different units for different elements
+  * Fix segfault with empty vector in uncertainty calculation
+  * Fix segfault trying to solve cbrt(x)^(1/3)-x=0
+  * Fix segfault in handling of vector variable with uncertainty
+  * Fix internal id does not exist error
+  * Fix erroneous simplification of sin(x)^2*y-cos(x)sin(x)^2y
+  * Do not try to calculate norm() and magnitude() for matrices
+  * Fix some memory leaks
+  * Fix order of argument titles in csum() function
+
 -------------------------------------------------------------------
 Sat Jan 28 16:16:10 UTC 2023 - Dirk Müller <dmueller@suse.com>
 
diff --git a/qalculate.spec b/qalculate.spec
index 056d19d..0dffe8c 100644
--- a/qalculate.spec
+++ b/qalculate.spec
@@ -19,7 +19,7 @@
 %define major   22
 %define libname libqalculate
 Name:           qalculate
-Version:        4.5.1
+Version:        4.6.1
 Release:        0
 Summary:        Multi-purpose desktop calculator application
 License:        GPL-2.0-or-later