Skip to content

Commit

Permalink
Bump version to v0.1.0 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
AkshitaB committed Nov 26, 2023
1 parent f09a500 commit 6c94994
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [v0.1.0](https://github.com/allenai/LLM/releases/tag/v0.1.0) - 2023-11-26

### Added

- GPT-based model.
Expand Down
24 changes: 24 additions & 0 deletions RELEASE_PROCESS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Release Process

## Steps

1. Update the version in `olmo/version.py`.

2. Run the release script:

```bash
./scripts/release.sh
```

This will automatically update the CHANGELOG, commit the changes to the CHANGELOG and `version.py` (and any other files you might have changed),
and then create a new tag in git which will trigger a workflow on GitHub Actions that handles the rest.

## Fixing a failed release

If for some reason the GitHub Actions release workflow failed with an error that needs to be fixed, you'll have to delete both the tag and corresponding release from GitHub. After you've pushed a fix, delete the tag from your local clone with

```bash
git tag -l | xargs git tag -d && git fetch -t
```

Then repeat the steps above.

0 comments on commit 6c94994

Please sign in to comment.