Skip to content

Commit

Permalink
Revised CHANGELOG and version strings for 1.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ericblau committed Jun 30, 2023
1 parent 1d8ae9c commit a9cc871
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions docs/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
for 1.7-1
* fileread.py reads and parses generic json files, sample etc/ipf/workflow/templates/{generic_print,generic_publish}.json
* docs/GENERIC_PUBLISHER.md documents how to configure the new generic publisher
* all aspects of interaction between IPF and Slurm are parameterizable so that changes in the schedulers do not require new IPF code
* Improved configuration, bootstrapping of position files for monitoring slurmctl.log
* Modules improvements: Do not publish modules with a don’t publish flag
* Refactored IPF configuration (command line parameters to (re)configure single specific workflows)
* IPF documentation revised for clarity and completeness
* Convenience script for keeping ca_certs.pem up to date with XSEDE trusted CAs
* Now can use python-amqp 2.4 and above

from 1.4-2 to 1.4.3
* fixed publishing of IPF information, formatted as a PublisherInfo glue2 entity (not defined by glue2 spec), and added it to the modules, compute, activities and services workflows
Expand Down
2 changes: 1 addition & 1 deletion packaging-sbin/VERSIONipf
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7rc4
1.7
2 changes: 1 addition & 1 deletion packaging-sbin/build_ipf_rpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
VERSION=`grep version ../setup.py |awk 'BEGIN { FS = "\"" } ; { print $2 }'`
echo "Version is $VERSION"\n
echo $VERSION >./VERSIONipf
VERSION=1.7rc4
VERSION=1.7
RELEASE=`cat ./RELEASE`
SDIDIR=`pwd`
cd ..
Expand Down
2 changes: 1 addition & 1 deletion packaging-sbin/package
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ cp VERSION$PKG $OUTDIR/VERSION

mkdir $OUTDIR/docs
cd ..
FILES=$(find ./docs -type f ! -path \*\.svn\*)
FILES=$(find ./docs -type f ! -path \*\.svn\* ! -path \*OLD\*)
echo $FILES
for i in $FILES;do
iout=$(echo $i | sed 's/\.in$//')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def workflow_paths(directory):
_createManifest()
_createSetupCfg()
setup(name="ipf",
version="1.7rc4",
version="1.7",
description="The Information Publishing Framework",
long_description=readme(),
classifiers=[
Expand Down

0 comments on commit a9cc871

Please sign in to comment.