Skip to content

Commit

Permalink
Bump docs for 0.6.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mario4tier committed Dec 23, 2024
1 parent a0cb779 commit 684608c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
22 changes: 11 additions & 11 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
hide:
- toc
---
Latest release is [0.6.0 on Github](https://github.com/ta-lib/ta-lib-temp/releases/latest)
Latest release is [0.6.1 on Github](https://github.com/ta-lib/ta-lib-temp/releases/latest)

- [Windows](#windows)
- [Executable Installer (recommended)](#executable-installer-recommended)
Expand All @@ -23,7 +23,7 @@ Only x86 64-bits binaries are distributed. Other windows platforms need to build

### Executable Installer (recommended)

1. **Download** latest [ta-lib-0.6.0-windows-x86_64.msi](https://github.com/ta-lib/ta-lib-temp/releases/download/v0.6.0/ta-lib-0.6.0-windows-x86_64.msi)
1. **Download** latest [ta-lib-0.6.1-windows-x86_64.msi](https://github.com/ta-lib/ta-lib-temp/releases/download/v0.6.1/ta-lib-0.6.1-windows-x86_64.msi)

2. **Run the Installer**:
- Double-click the downloaded `.msi` file.
Expand All @@ -40,7 +40,7 @@ Only x86 64-bits binaries are distributed. Other windows platforms need to build
### Windows Binaries
This is a package with all the static/shared binaries and headers needed to bundle TA-Lib with your own application (eliminates having the user install TA-Lib separately).

Latest is [ta-lib-0.6.0-windows-x86_64.zip](https://github.com/ta-lib/ta-lib-temp/releases/download/v0.6.0/ta-lib-0.6.0-windows-x86_64.zip)
Latest is [ta-lib-0.6.1-windows-x86_64.zip](https://github.com/ta-lib/ta-lib-temp/releases/download/v0.6.1/ta-lib-0.6.1-windows-x86_64.zip)

### Windows Build from Source

Expand Down Expand Up @@ -70,18 +70,18 @@ Recommended for all debian-based distributions (e.g. Ubuntu, Mint...)

| Platform | Download |
|------------------------|--|
| Intel/AMD 64-bits | [ta-lib_0.6.0_amd64.deb](https://github.com/ta-lib/ta-lib-temp/releases/download/v0.6.0/ta-lib_0.6.0_amd64.deb) |
| ARM64 (e.g. Raspberry Pi)| [ta-lib_0.6.0_arm64.deb](https://github.com/ta-lib/ta-lib-temp/releases/download/v0.6.0/ta-lib_0.6.0_arm64.deb) |
| Intel/AMD 32-bits| [ta-lib_0.6.0_x86.deb](https://github.com/ta-lib/ta-lib-temp/releases/download/v0.6.0/ta-lib_0.6.0_x86.deb) |
| Intel/AMD 64-bits | [ta-lib_0.6.1_amd64.deb](https://github.com/ta-lib/ta-lib-temp/releases/download/v0.6.1/ta-lib_0.6.1_amd64.deb) |
| ARM64 (e.g. Raspberry Pi)| [ta-lib_0.6.1_arm64.deb](https://github.com/ta-lib/ta-lib-temp/releases/download/v0.6.1/ta-lib_0.6.1_arm64.deb) |
| Intel/AMD 32-bits| [ta-lib_0.6.1_x86.deb](https://github.com/ta-lib/ta-lib-temp/releases/download/v0.6.1/ta-lib_0.6.1_x86.deb) |

2. **Install or Update**:
```bash
# For Intel/AMD (64 bits)
sudo dpkg -i ta-lib_0.6.0_amd64.deb
sudo dpkg -i ta-lib_0.6.1_amd64.deb
# or
sudo dpkg -i ta-lib_0.6.0_arm64.deb
sudo dpkg -i ta-lib_0.6.1_arm64.deb
# or
sudo dpkg -i ta-lib_0.6.0_x86.deb
sudo dpkg -i ta-lib_0.6.1_x86.deb
```
If you choose to uninstall do:
```bash
Expand All @@ -90,11 +90,11 @@ Recommended for all debian-based distributions (e.g. Ubuntu, Mint...)

### Linux Build from Source

1. **Download** latest [ta-lib-0.6.0-src.tar.gz](https://github.com/ta-lib/ta-lib-temp/releases/download/v0.6.0/ta-lib-0.6.0-src.tar.gz)
1. **Download** latest [ta-lib-0.6.1-src.tar.gz](https://github.com/ta-lib/ta-lib-temp/releases/download/v0.6.1/ta-lib-0.6.1-src.tar.gz)

2. **Extract the Tarball**:
```bash
tar -xzf ta-lib-0.6.0-src.tar.gz
tar -xzf ta-lib-0.6.1-src.tar.gz
cd ta-lib
```

Expand Down
2 changes: 1 addition & 1 deletion scripts/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# lib/ta-lib.lib (import library)
# lib/ta-lib-static.lib (static library)
# include/*.h (API headers)
# VERSION.txt Version number (e.g. "0.6.0")
# VERSION.txt Version number "major.minor.patch"
#
# How to run it?
# Do './scripts/package.py' while current directory is the root of the ta-lib repository.
Expand Down
4 changes: 2 additions & 2 deletions scripts/utilities/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def get_version_string(root_dir: str) -> str:
"""
Parse the file VERSION to get the version string.
The file contains a single line with the version string (e.g. "0.6.0")
The file contains a single line with the version string "major.minor.patch"
Exit on any error.
"""
Expand Down Expand Up @@ -114,7 +114,7 @@ def get_version_string_source_code(root_dir: str) -> str:
#define MINOR "6"
#define PATCH "0"
These become the string "0.6.0".
These become the string "0.6.1".
"""

version_file_path = path_join(root_dir, "src", "ta_common", "ta_version.c")
Expand Down

0 comments on commit 684608c

Please sign in to comment.