File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33We follow the CalVer (https://calver.org/ ) versioning scheme: YY.MINOR.MICRO.
44
5+ 26.8.2 (2026-05-06)
6+ ===================
7+
8+ - Hotfix to avoid 502 on creating preprint version from rejected version
9+
51026.8.1 (2026-04-30)
611===================
712
Original file line number Diff line number Diff line change @@ -407,7 +407,7 @@ def check_unfinished_or_unpublished_version(self):
407407 """Check and return the "initiated but unfinished version" and "unfinished or unpublished version".
408408 """
409409 last_not_rejected_version = self .get_last_not_rejected_version ()
410- if last_not_rejected_version .date_published :
410+ if not last_not_rejected_version or last_not_rejected_version .date_published :
411411 return None , None
412412 if last_not_rejected_version .machine_state == 'initial' :
413413 return last_not_rejected_version , None
Original file line number Diff line number Diff line change 11{
22 "name" : " OSF" ,
3- "version" : " 26.8.1 " ,
3+ "version" : " 26.8.2 " ,
44 "description" : " Facilitating Open Science" ,
55 "repository" : " https://github.com/CenterForOpenScience/osf.io" ,
66 "author" : " Center for Open Science" ,
You can’t perform that action at this time.
0 commit comments