Skip to content

Commit 1c7d2a0

Browse files
Bump 0.2.1 (#158)
Bump and release to 0.2.1
1 parent f2f4138 commit 1c7d2a0

File tree

5 files changed

+41
-50
lines changed

5 files changed

+41
-50
lines changed

.github/workflows/release.yml

+37-46
Original file line numberDiff line numberDiff line change
@@ -38,65 +38,56 @@ jobs:
3838
name: dist
3939
path: dist/
4040

41-
test-pypi-publish:
42-
needs: build
43-
runs-on: ubuntu-latest
41+
# test-pypi-publish:
42+
# needs: build
43+
# runs-on: ubuntu-latest
4444

45-
steps:
46-
- uses: actions/checkout@v4
45+
# steps:
46+
# - uses: actions/checkout@v4
4747

48-
- name: Set up Python
49-
uses: actions/setup-python@v4
50-
with:
51-
python-version: ${{ env.PYTHON_VERSION }}
48+
# - name: Set up Python
49+
# uses: actions/setup-python@v4
50+
# with:
51+
# python-version: ${{ env.PYTHON_VERSION }}
5252

53-
- name: Install Poetry
54-
uses: snok/install-poetry@v1
53+
# - name: Install Poetry
54+
# uses: snok/install-poetry@v1
5555

56-
- uses: actions/download-artifact@v4
57-
with:
58-
name: dist
59-
path: dist/
56+
# - uses: actions/download-artifact@v4
57+
# with:
58+
# name: dist
59+
# path: dist/
6060

61-
- name: Publish to TestPyPI
62-
env:
63-
POETRY_PYPI_TOKEN_TESTPYPI: ${{ secrets.TESTPYPI }}
64-
run: poetry config repositories.test-pypi https://test.pypi.org/legacy/; poetry config pypi-token.test-pypi $POETRY_PYPI_TOKEN_TESTPYPI; poetry publish --repository test-pypi
61+
# - name: Publish to TestPyPI
62+
# env:
63+
# POETRY_PYPI_TOKEN_TESTPYPI: ${{ secrets.TESTPYPI }}
64+
# run: poetry config repositories.test-pypi https://test.pypi.org/legacy/; poetry config pypi-token.test-pypi $POETRY_PYPI_TOKEN_TESTPYPI; poetry publish --repository test-pypi
6565

66-
pre-release-checks:
67-
needs: test-pypi-publish
68-
runs-on: ubuntu-latest
66+
# pre-release-checks:
67+
# needs: test-pypi-publish
68+
# runs-on: ubuntu-latest
6969

70-
steps:
71-
- uses: actions/checkout@v4
70+
# steps:
71+
# - uses: actions/checkout@v4
7272

73-
- name: Set up Python
74-
uses: actions/setup-python@v4
75-
with:
76-
python-version: ${{ env.PYTHON_VERSION }}
73+
# - name: Set up Python
74+
# uses: actions/setup-python@v4
75+
# with:
76+
# python-version: ${{ env.PYTHON_VERSION }}
7777

78-
- name: Install Poetry
79-
uses: snok/install-poetry@v1
78+
# - name: Install Poetry
79+
# uses: snok/install-poetry@v1
8080

81-
- name: Install dependencies
82-
run: |
83-
poetry install --all-extras
81+
# - name: Install dependencies
82+
# run: |
83+
# poetry install --all-extras
8484

85-
- name: Install published package from TestPyPI
86-
env:
87-
OPENAI_API_KEY: ${{ secrets.OPENAI_KEY }}
88-
GCP_LOCATION: ${{ secrets.GCP_LOCATION }}
89-
GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }}
90-
COHERE_API_KEY: ${{ secrets.COHERE_API_KEY }}
91-
AZURE_OPENAI_API_KEY: ${{secrets.AZURE_OPENAI_API_KEY}}
92-
AZURE_OPENAI_ENDPOINT: ${{secrets.AZURE_OPENAI_ENDPOINT}}
93-
AZURE_OPENAI_DEPLOYMENT_NAME: ${{secrets.AZURE_OPENAI_DEPLOYMENT_NAME}}
94-
OPENAI_API_VERSION: ${{secrets.OPENAI_API_VERSION}}
95-
run:
96-
poetry run pip install --index-url https://test.pypi.org/simple/ --no-deps redisvl; poetry run test-cov
85+
# - name: Install published package from TestPyPI
86+
# run:
87+
# poetry run pip install --index-url https://test.pypi.org/simple/ --no-deps redisvl; SKIP_VECTORIZERS=True SKIP_RERANKERS=True poetry run test-cov
9788

9889
publish:
99-
needs: pre-release-checks
90+
needs: build #pre-release-checks
10091
runs-on: ubuntu-latest
10192

10293
steps:

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
project = 'RedisVL'
2323
copyright = '2024, Redis Inc.'
2424
author = 'Redis Applied AI'
25-
version = "0.2.0"
25+
version = "0.2.1"
2626

2727
# The full version, including alpha/beta/rc tags
2828
release = version

docs/overview/cli.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"name": "stdout",
2525
"output_type": "stream",
2626
"text": [
27-
"\u001b[32m14:27:21\u001b[0m \u001b[34m[RedisVL]\u001b[0m \u001b[1;30mINFO\u001b[0m RedisVL version 0.2.0\n"
27+
"\u001b[32m21:05:12\u001b[0m \u001b[34m[RedisVL]\u001b[0m \u001b[1;30mINFO\u001b[0m RedisVL version 0.2.1\n"
2828
]
2929
}
3030
],

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "redisvl"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "Python client library and CLI for using Redis as a vector database"
55
authors = ["Redis Inc. <[email protected]>"]
66
license = "MIT"

redisvl/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.0"
1+
__version__ = "0.2.1"

0 commit comments

Comments
 (0)