Skip to content

Commit

Permalink
Cherry pick changelog (#468)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
ko3n1g authored Jan 3, 2025
1 parent aefdca6 commit 5a3c047
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,13 @@ on:
required: true
default: true
type: boolean

version-bump-branch:
type: string
required: true
description: Branch to target for version bump
jobs:
release:
uses: NVIDIA/NeMo-FW-CI-templates/.github/workflows/_release_library.yml@v0.15.0
uses: NVIDIA/NeMo-FW-CI-templates/.github/workflows/_release_library.yml@v0.18.4
with:
release-ref: ${{ inputs.release-ref }}
image-name: nemo_curator_container
Expand All @@ -43,6 +46,7 @@ jobs:
container-workdir: /opt/NeMo-Curator
library-name: NeMo Curator
dry-run: ${{ inputs.dry-run }}
version-bump-branch: ${{ inputs.version-bump-branch }}
secrets:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## NeMo Curator 0.6.0

- Synthetic Data Generation for Text Retrieval
- LLM-based Filters
- Easiness
- Answerability
- Q&A Retrieval Generation Pipeline
- Parallel Dataset Curation for Machine Translation
- Load/Write Bitext Files
- Heuristic filtering (Histogram, Length Ratio)
- Classifier filtering (Comet, Cometoid)

## NeMo Curator 0.5.0

### Highlights
Expand Down
8 changes: 7 additions & 1 deletion nemo_curator/package_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,13 @@
VERSION = (MAJOR, MINOR, PATCH, PRE_RELEASE, DEV)

__shortversion__ = ".".join(map(str, VERSION[:3]))
__version__ = __shortversion__ + VERSION[3] + "." + ".".join(VERSION[4:])
__version__ = __shortversion__

if VERSION[3] != "":
__version__ = __version__ + VERSION[3]

if VERSION[4] != "":
__version__ = __version__ + "." + ".".join(VERSION[4:])

__package_name__ = "nemo_curator"
__contact_names__ = "NVIDIA"
Expand Down

0 comments on commit 5a3c047

Please sign in to comment.