Skip to content

Commit

Permalink
Bump to release 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mario4tier committed Dec 23, 2024
1 parent ab0fc59 commit 83bae90
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@ Check https://ta-lib.org/install/ for latest installation instructions.

Only notable changes are documented here. See GitHub commits for all changes.

## [0.6.0] 2024-12-24
## [0.6.1] 2024-12-24
### 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.
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project(ta-lib)

set(TA_LIB_VERSION_MAJOR 0)
set(TA_LIB_VERSION_MINOR 6)
set(TA_LIB_VERSION_PATCH 0)
set(TA_LIB_VERSION_PATCH 1)

set(PROJECT_VERSION "${TA_LIB_VERSION_MAJOR}.${TA_LIB_VERSION_MINOR}.${TA_LIB_VERSION_PATCH}")

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.0
0.6.1
2 changes: 1 addition & 1 deletion include/ta_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ TA_RetCode TA_Shutdown( void );
* This value is updated whenever a make, cmake or any source files
* modification should trig a repackaging of TA-Lib.
*/
#define TA_LIB_SOURCES_DIGEST 6b9dacaf01965ecc06561290ab35dc3b
#define TA_LIB_SOURCES_DIGEST 9884945c45a9076ee03749b8c63f6ef3

#ifdef __cplusplus
}
Expand Down
2 changes: 1 addition & 1 deletion src/ta_common/ta_version.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
*/
#define MAJOR "0"
#define MINOR "6"
#define PATCH "0"
#define PATCH "1"

/* Deprecated: Use PATCH instead. */
#define BUILD PATCH
Expand Down

0 comments on commit 83bae90

Please sign in to comment.