Skip to content

Commit 5512db9

Browse files
Alex VongAlex Vong
Alex Vong
authored and
Alex Vong
committed
Merge branch 'release-v3.0.1' (PR #1202)
2 parents 83a07ed + 6dd372c commit 5512db9

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Name: symbolic
2-
Version: 3.0.0+
3-
Date: 2022-07-06
2+
Version: 3.0.1
3+
Date: 2022-08-09
44
Author: Colin B. Macdonald <[email protected]>
55
Maintainer: Colin B. Macdonald <[email protected]>
66
Title: Octave Symbolic Package using SymPy

NEWS

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
octsympy 3.0.0+
2-
===============
1+
octsympy 3.0.1 (2022-08-09)
2+
===========================
33

44
* New `@double` numerical functions; these are wrappers around SymPy,
55
so they are slower than native floating-point implementations.
@@ -11,6 +11,9 @@ octsympy 3.0.0+
1111
* `.oct-config` files indicate source is UTF-8 encoded and should improve
1212
any locale or encoding problems on Octave 7 and above.
1313

14+
* Fixes some errors when Python is running in Cygwin-like environment.
15+
But there could still be errors in other places (issue #1182).
16+
1417

1518

1619
octsympy 3.0.0 (2022-07-05)

inst/sympref.m

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
%% Copyright (C) 2014-2020, 2022 Colin B. Macdonald
22
%% Copyright (C) 2017 NVS Abhilash
33
%% Copyright (C) 2017 Mike Miller
4+
%% Copyright (C) 2022 Alex Vong
45
%%
56
%% This file is part of OctSymPy.
67
%%
@@ -173,7 +174,7 @@
173174
%% @example
174175
%% @group
175176
%% sympref version
176-
%% @result{} 3.0.0+
177+
%% @result{} 3.0.1
177178
%% @end group
178179
%% @end example
179180
%%
@@ -216,7 +217,7 @@
216217

217218
case 'version'
218219
assert (nargin == 1)
219-
varargout{1} = '3.0.0+';
220+
varargout{1} = '3.0.1';
220221

221222
case 'display'
222223
if (nargin == 1)

0 commit comments

Comments
 (0)