Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/version_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
# Validate version.h matches the release tag
- name: Assert version increment
run: |
CODE_VERSION=$(grep -oP '#define\s+VERSION\s+"\Kv?\d+(\.\d+){2,3}' source/source_main/version.h)
CODE_VERSION=$(grep -oP '#define\s+VERSION\s+"\Kv?\d+\.\d+\.\d+(?:-[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*)?(?:\+[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*)?' source/source_main/version.h)
if [[ -z "$CODE_VERSION" ]]; then
echo "::error::Failed to extract version from source/source_main/version.h"
Expand Down
4 changes: 2 additions & 2 deletions interfaces/ASE_interface/abacuslite/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,9 +397,9 @@ def __init__(self,
# not recommended :(
profile = AbacusProfile('abacus') if profile is None else profile

# does not support ABACUS version series v3.9.0.x
# does not support ABACUS version series v3.9.0.x and v3.11.0-beta.x
version = profile.version()
if re.match(r'v3\.9\.0\.\d+', version):
if re.match(r'v3\.9\.0\.\d+', version) or re.match(r'v3\.11\.0-beta\.\d+', version):
global __LEGACYIO__
__LEGACYIO__ = False

Expand Down
2 changes: 1 addition & 1 deletion source/source_main/version.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#ifndef VERSION
#define VERSION "v3.9.0.27"
#define VERSION "v3.11.0-beta.1"
#endif
Loading