Skip to content

Commit

Permalink
Merge pull request #883 from boegel/develop
Browse files Browse the repository at this point in the history
bump version to 4.9.0
  • Loading branch information
boegel authored Dec 30, 2023
2 parents a0c1159 + 0851a31 commit 877f712
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/create_source_tarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ if [[ "$repo" == "easybuild-easyconfigs" ]]; then
echo -n ">> checking whether all files in index actually exist in unpacked source tarball ... "
file_cnt=`cat $index_in_sdist | grep -v '^#' | wc -l | sed 's/ //g'`
idx=1
for file in `cat $index_in_sdist | grep -v '^#'`; do
for file in `cat $index_in_sdist | grep -v '^#' | grep -v '__archive__/r/RCS/'`; do
echo -e -n "\r>> checking whether all files in index actually exist in unpacked source tarball ... $idx/$file_cnt"
if [ ! -f $unpacked_sdist/easybuild/easyconfigs/$file ]; then
error "File $file listed in index, but not found in $cwd!"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

# note: release candidates should be versioned as a pre-release, e.g. "1.1rc1"
# 1.1-rc1 would indicate a post-release, i.e., and update of 1.1, so beware
VERSION = '4.8.2'
VERSION = '4.9.0'


# Utility function to read README file
Expand Down

0 comments on commit 877f712

Please sign in to comment.