Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package octave-forge-ga for openSUSE:Factory
checked in at 2021-01-18 11:28:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/octave-forge-ga (Old)
and /work/SRC/openSUSE:Factory/.octave-forge-ga.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "octave-forge-ga"
Mon Jan 18 11:28:20 2021 rev:3 rq:863415 version:0.10.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/octave-forge-ga/octave-forge-ga.changes
2019-11-28 10:14:53.807637639 +0100
+++
/work/SRC/openSUSE:Factory/.octave-forge-ga.new.28504/octave-forge-ga.changes
2021-01-18 11:32:03.488667081 +0100
@@ -1,0 +2,6 @@
+Tue Jan 12 09:46:07 UTC 2021 - Atri Bhattacharya <[email protected]>
+
+- Update to version 0.10.2:
+ * Bug fixes #59299
+
+-------------------------------------------------------------------
Old:
----
ga-0.10.1.tar.gz
New:
----
ga-0.10.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ octave-forge-ga.spec ++++++
--- /var/tmp/diff_new_pack.eH6TCf/_old 2021-01-18 11:32:04.232667814 +0100
+++ /var/tmp/diff_new_pack.eH6TCf/_new 2021-01-18 11:32:04.236667819 +0100
@@ -1,7 +1,7 @@
#
# spec file for package octave-forge-ga
#
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
%define octpkg ga
Name: octave-forge-%{octpkg}
-Version: 0.10.1
+Version: 0.10.2
Release: 0
Summary: Genetic optimization code for Octave
License: GPL-2.0-or-later
++++++ ga-0.10.1.tar.gz -> ga-0.10.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ga-0.10.1/DESCRIPTION new/ga-0.10.2/DESCRIPTION
--- old/ga-0.10.1/DESCRIPTION 2019-06-04 20:36:52.000000000 +0200
+++ new/ga-0.10.2/DESCRIPTION 2020-12-02 16:51:06.000000000 +0100
@@ -1,6 +1,6 @@
Name: ga
-Version: 0.10.1
-Date: 2019-06-04
+Version: 0.10.2
+Date: 2020-12-02
Author: Luca Favatella <[email protected]>
Maintainer: Octave-Forge community <[email protected]>
Title: Genetic Algorithm
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ga-0.10.1/NEWS new/ga-0.10.2/NEWS
--- old/ga-0.10.1/NEWS 2019-06-04 20:36:52.000000000 +0200
+++ new/ga-0.10.2/NEWS 2020-12-02 16:51:06.000000000 +0100
@@ -1,6 +1,12 @@
Summary of important user-visible changes for releases of the ga package
===============================================================================
+ga-0.10.2 Release Date: 2020-12-02 Release Manager: John Donoghue
+===============================================================================
+
+** Bug fixes #59299
+
+===============================================================================
ga-0.10.1 Release Date: 2019-06-04 Release Manager: John Donoghue
===============================================================================
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ga-0.10.1/inst/crossoverscattered.m
new/ga-0.10.2/inst/crossoverscattered.m
--- old/ga-0.10.1/inst/crossoverscattered.m 2019-06-04 20:36:52.000000000
+0200
+++ new/ga-0.10.2/inst/crossoverscattered.m 2020-12-02 16:51:06.000000000
+0100
@@ -1,5 +1,5 @@
## Copyright (C) 2008, 2009, 2011 Luca Favatella <[email protected]>
-## Copyright (C) 2019 John D <[email protected]>
+## Copyright (C) 2019-2020 John D <[email protected]>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
@@ -65,7 +65,7 @@
thisPopulation(parents(1, 1:n_children), 1:nvars);
p2(1:n_children, 1:nvars) = ...
thisPopulation(parents(1, n_children + (1:n_children)), 1:nvars);
- b(1:n_children, 1:nvars) = randi (1, n_children, nvars); ## TODO: test randi
+ b(1:n_children, 1:nvars) = randi (2, n_children, nvars) - 1;
xoverKids(1:n_children, 1:nvars) = ...
b .* p1 + (ones (n_children, nvars) - b) .* p2;
endfunction