Skip to content

Commit e8c927a

Browse files
authored
Release 3.60.0 (#1365)
2 parents 311bdd1 + 788d0ef commit e8c927a

File tree

10 files changed

+1493
-19
lines changed

10 files changed

+1493
-19
lines changed

.github/workflows/publish.yaml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ jobs:
1111

1212
runs-on: ubuntu-latest
1313

14+
permissions:
15+
# IMPORTANT: this permission is mandatory for trusted publishing
16+
id-token: write
17+
1418
steps:
1519
- uses: actions/checkout@v2
1620

@@ -28,9 +32,11 @@ jobs:
2832
run: |
2933
python setup.py sdist bdist_wheel
3034
31-
- name: Publish
32-
env:
33-
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
34-
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
35-
run: |
36-
twine upload dist/*
35+
# - name: Publish
36+
# env:
37+
# TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
38+
# TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
39+
# run: |
40+
# twine upload dist/*
41+
- name: Publish package distributions to PyPI
42+
uses: pypa/gh-action-pypi-publish@release/v1

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
# Changelog
2+
# Version 3.60.0 (2024-01-17)
3+
## Added
4+
* Get resource tags from a project
5+
* Method to CatalogSlice to get data row identifiers (both uids and global keys)
6+
* Added deprecation notice for the `upsert_review_queue` method in project
7+
## Notebooks
8+
* Update notebook for Project move_data_rows_to_task_queue
9+
* Added notebook for model foundry
10+
* Added notebook for migrating from Exports V1 to V2
11+
212
# Version 3.59.0 (2024-01-05)
313
## Added
414
* Support set_labeling_parameter_overrides for global keys

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
copyright = '2021, Labelbox'
2222
author = 'Labelbox'
2323

24-
release = '3.59.0'
24+
release = '3.60.0'
2525

2626
# -- General configuration ---------------------------------------------------
2727

0 commit comments

Comments
 (0)