Skip to content

Commit

Permalink
Prepare for release v1.0.0rc0
Browse files Browse the repository at this point in the history
  • Loading branch information
AkshitaB committed Dec 19, 2023
1 parent b9cc7df commit a61dd9f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 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

## [v1.0.0rc0](https://github.com/allenai/catwalk/releases/tag/v1.0.0rc0) - 2023-12-19

### Added

- Support for OPT-175B (AI2 only)
Expand Down
8 changes: 4 additions & 4 deletions catwalk/version.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
_MAJOR = "0"
_MINOR = "2"
_MAJOR = "1"
_MINOR = "0"
# On main and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "2"
_PATCH = "0"
# This is mainly for pre-releases which have the suffix "rc[0-9]+".
_SUFFIX = ""
_SUFFIX = "rc0"

VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR)
VERSION = "{0}.{1}.{2}{3}".format(_MAJOR, _MINOR, _PATCH, _SUFFIX)

0 comments on commit a61dd9f

Please sign in to comment.