Skip to content

Commit a61dd9f

Browse files
committed
Prepare for release v1.0.0rc0
1 parent b9cc7df commit a61dd9f

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## [v1.0.0rc0](https://github.com/allenai/catwalk/releases/tag/v1.0.0rc0) - 2023-12-19
11+
1012
### Added
1113

1214
- Support for OPT-175B (AI2 only)

catwalk/version.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
_MAJOR = "0"
2-
_MINOR = "2"
1+
_MAJOR = "1"
2+
_MINOR = "0"
33
# On main and in a nightly release the patch should be one ahead of the last
44
# released build.
5-
_PATCH = "2"
5+
_PATCH = "0"
66
# This is mainly for pre-releases which have the suffix "rc[0-9]+".
7-
_SUFFIX = ""
7+
_SUFFIX = "rc0"
88

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

0 commit comments

Comments
 (0)