Skip to content

Commit 063a2cf

Browse files
authored
Release/v0.12.6 (#97)
1 parent 576bd1d commit 063a2cf

7 files changed

Lines changed: 20 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
1313
- Fixed for any bug fixes.
1414
- Security in case of vulnerabilities.
1515

16+
## [v0.12.6]
17+
*NOTE:* Colab is not working in this release, use 0.11.1 for fine tuning
18+
19+
### Changes
20+
- Added Gantt charts in images
21+
- Update documentation links for HuggingFace
22+
23+
### Fixed
24+
- RAG/Evals notebook issues with rate limit, no CUA GPUs, and unpickle messages
25+
- Experiment.end() for RAG
26+
- Datagrame for results
27+
1628
## [v0.12.5]
1729
*NOTE:* Colab is not working in this release, use 0.11.1 for fine tuning
1830

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ pip install rapidfireai
5959

6060
rapidfireai --version
6161
# Verify it prints the following:
62-
# RapidFire AI 0.12.5
62+
# RapidFire AI 0.12.6
6363

6464
# Replace YOUR_TOKEN with your actual Hugging Face token
6565
# https://huggingface.co/docs/hub/en/security-tokens

docs/BUILD.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ rm -rf dist/ *.egg-info/ .eggs/ && python -m build
3434
rsync -av dist/ user:~/rapidfire
3535

3636
# from directory where dist/ folder is
37-
pip install rapidfireai-0.12.5-py3-none-any.whl
37+
pip install rapidfireai-0.12.6-py3-none-any.whl
3838

3939
export PATH="$HOME/.local/bin:$PATH"
4040

4141
rapidfireai --version
42-
# RapidFire AI 0.12.5
42+
# RapidFire AI 0.12.6
4343

4444
# install specific dependencies and initialize rapidfire
4545
rapidfireai init

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "rapidfireai"
7-
version = "0.12.5"
7+
version = "0.12.6"
88
authors = [
99
{name = "RapidFire AI Inc.", email = "support@rapidfire.ai"},
1010
]

rapidfireai/fit/frontend/src/common/constants.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const ErrorCodes = {
99
RESOURCE_CONFLICT: 'RESOURCE_CONFLICT',
1010
};
1111

12-
export const Version = '0.12.5';
12+
export const Version = '0.12.6';
1313

1414
const DOCS_VERSION = 'latest';
1515

rapidfireai/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
Version information for RapidFire AI
33
"""
44

5-
__version__ = "0.12.5"
6-
__version_info__ = (0, 12, 5)
5+
__version__ = "0.12.6"
6+
__version_info__ = (0, 12, 6)

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# version 0.12.5
1+
# version 0.12.6
22

33
# ml
44
pandas>=2.0.0,<2.3.0 # Colab compatibility (2.2.2) and cudf constraint

0 commit comments

Comments
 (0)