From 68fbfc36a4f16a5502f32ceac46899bd591ddef3 Mon Sep 17 00:00:00 2001 From: Shane A Date: Thu, 11 Jul 2024 14:48:29 -0700 Subject: [PATCH] Bump version to v0.4.0 for release --- CHANGELOG.md | 2 ++ olmo/version.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1b546191..db8b4d828 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [v0.4.0](https://github.com/allenai/OLMo/releases/tag/v0.4.0) - 2024-07-11 + ### Added - Added clipping fix to `Optimizer` class to make it work with FSDP `no_shard` and DDP. diff --git a/olmo/version.py b/olmo/version.py index 72ddc9834..eca97dc9d 100644 --- a/olmo/version.py +++ b/olmo/version.py @@ -1,8 +1,8 @@ _MAJOR = "0" -_MINOR = "3" +_MINOR = "4" # On main and in a nightly release the patch should be one ahead of the last # released build. -_PATCH = "1" +_PATCH = "0" # This is mainly for nightly builds which have the suffix ".dev$DATE". See # https://semver.org/#is-v123-a-semantic-version for the semantics. _SUFFIX = ""