Skip to content

Latest commit

 

History

History
61 lines (38 loc) · 2.15 KB

CHANGELOG.md

File metadata and controls

61 lines (38 loc) · 2.15 KB

Changelog

Installation docs: https://ta-lib.org/install/

Just re-install to upgrade. Older versions are automatically removed.

See github commits for complete list of changes

[0.6.4] 2025-01-11

Fixed

  • (#54): Fix gen_code compilation on Windows
  • RPM packaging: Fix ta-lib.spec.in with Github URL instead of sourceforge

[0.6.3] 2025-01-06

Fixed

  • (#52) Add missing export to import lib for Windows DLL.

[0.6.2] 2024-12-26

Added

  • Windows - New 32 bits zip and msi packages.

Fixed

  • (#51) Allow for Debian 11 and Ubuntu 22.04 LTS support with lower version of CMake
  • (#43) Windows - Fix 64 bits DLL install location to C:\Program Files\TA-Lib
  • x86 Debian package renamed to i386 (as per Debian convention)

[0.6.1] 2024-12-23

Added

  • Packaging automation for various platforms, notably Windows 64 bits.

Fixed

  • Autotools and CMakeLists.txt have been modernized.
  • Fix for very small inputs to TA functions (floating point epsilon problem).

Changed

  • Static/Shared lib file names uses hyphen instead of underscore. This was needed for some package naming convention. In other word, look for "ta-lib" instead of "ta_lib".

    Example: when linking you now specify "-lta-lib" instead of "-lta_lib".

  • C/C++ headers are now under a "ta-lib" subdirectory. You may have to change your code accordingly.

    Best way to handle this is to add the headers path to your compiler (e.g. -I/usr/local/include/ta-lib for gcc).

    Alternatively, you can modify your code to #include <ta-lib/ta_libc.h> instead of #include <ta_libc.h>

    This change is for namespace best-practice for when TA-Lib is installed at the system level.

  • Moving forward, autotools and CMake are the only two supported build systems. Consequently:

    • All xcode/Visual Studio projects (.sln) are not maintained anymore.
    • There is no "cdd", "cdr" etc... library variants anymore. This is an outdated way of doing.
    • The ide/ and make/ directories from 0.4.0 have been removed.

    Recommendation: VSCode+CMake works consistently on most platforms.

  • TA_GetVersionBuild() is deprecated. Use TA_GetVersionPatch() instead.