Skip to content

Commit 5a3c047

Browse files
authored
Cherry pick changelog (#468)
* chore: update changelog 0.6.0 (#466) * docs: Update changelog Signed-off-by: oliver könig <[email protected]> * ci: Bump release workflow Signed-off-by: oliver könig <[email protected]> * Update release.yml Signed-off-by: oliver könig <[email protected]> * docs: mention extended MNMG support Signed-off-by: oliver könig <[email protected]> * bump Signed-off-by: oliver könig <[email protected]> * remove note Signed-off-by: oliver könig <[email protected]> --------- Signed-off-by: oliver könig <[email protected]> * fix: Generate version number string (#467) Signed-off-by: oliver könig <[email protected]> --------- Signed-off-by: oliver könig <[email protected]>
1 parent aefdca6 commit 5a3c047

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

.github/workflows/release.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,13 @@ on:
2525
required: true
2626
default: true
2727
type: boolean
28-
28+
version-bump-branch:
29+
type: string
30+
required: true
31+
description: Branch to target for version bump
2932
jobs:
3033
release:
31-
uses: NVIDIA/NeMo-FW-CI-templates/.github/workflows/_release_library.yml@v0.15.0
34+
uses: NVIDIA/NeMo-FW-CI-templates/.github/workflows/_release_library.yml@v0.18.4
3235
with:
3336
release-ref: ${{ inputs.release-ref }}
3437
image-name: nemo_curator_container
@@ -43,6 +46,7 @@ jobs:
4346
container-workdir: /opt/NeMo-Curator
4447
library-name: NeMo Curator
4548
dry-run: ${{ inputs.dry-run }}
49+
version-bump-branch: ${{ inputs.version-bump-branch }}
4650
secrets:
4751
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
4852
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## NeMo Curator 0.6.0
4+
5+
- Synthetic Data Generation for Text Retrieval
6+
- LLM-based Filters
7+
- Easiness
8+
- Answerability
9+
- Q&A Retrieval Generation Pipeline
10+
- Parallel Dataset Curation for Machine Translation
11+
- Load/Write Bitext Files
12+
- Heuristic filtering (Histogram, Length Ratio)
13+
- Classifier filtering (Comet, Cometoid)
14+
315
## NeMo Curator 0.5.0
416

517
### Highlights

nemo_curator/package_info.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,13 @@
2323
VERSION = (MAJOR, MINOR, PATCH, PRE_RELEASE, DEV)
2424

2525
__shortversion__ = ".".join(map(str, VERSION[:3]))
26-
__version__ = __shortversion__ + VERSION[3] + "." + ".".join(VERSION[4:])
26+
__version__ = __shortversion__
27+
28+
if VERSION[3] != "":
29+
__version__ = __version__ + VERSION[3]
30+
31+
if VERSION[4] != "":
32+
__version__ = __version__ + "." + ".".join(VERSION[4:])
2733

2834
__package_name__ = "nemo_curator"
2935
__contact_names__ = "NVIDIA"

0 commit comments

Comments
 (0)