Skip to content

Commit

Permalink
Merge pull request #151 from apel/release-1.6.1
Browse files Browse the repository at this point in the history
Release 1.6.1 to dev
  • Loading branch information
tofu-rocketry committed Feb 28, 2018
2 parents b726213 + 04d2b8e commit ea024a4
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 10 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
Changelog for apel
==================
* Thu Dec 14 2017 Adrian Coveney <adrian.coveney@stfc.ac.uk> - 1.6.1-1
- [Parsers] Removed version restriction from LSF parser so that it can
additionally work with version 10 onwards.
- Added more columns to cloud summaries primary key to prevent mis-grouping.
- Added Python setup script to enable installation on non-RHEL-based systems.
- Made the updating of record timestamps in the database explicit.
- Added type checking to float and datetime fields in the Python code.

* Fri Mar 10 2017 Adrian Coveney <adrian.coveney@stfc.ac.uk> - 1.6.0-1
- Added support for mixed time formats used in Torque 5.1.3.
- Changed the way core count is parsed to support Torque 5.1.0.
Expand Down
21 changes: 14 additions & 7 deletions apel.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
%endif

Name: apel
Version: 1.6.0
Version: 1.6.1
%define releasenumber 1
Release: %{releasenumber}%{?dist}
Summary: APEL packages
Expand Down Expand Up @@ -34,7 +34,7 @@ apel-lib provides required libraries for the rest of APEL system.
%package parsers
Summary: Parsers for APEL system
Group: Development/Languages
Requires: apel-lib >= 1.6.0
Requires: apel-lib >= 1.6.1
Requires(pre): shadow-utils

%description parsers
Expand All @@ -44,7 +44,7 @@ supported by the APEL system: Torque, SGE and LSF.
%package client
Summary: APEL client package
Group: Development/Languages
Requires: apel-lib >= 1.6.0, apel-ssm
Requires: apel-lib >= 1.6.1, apel-ssm
Requires(pre): shadow-utils

%description client
Expand All @@ -55,7 +55,7 @@ SSM.
%package server
Summary: APEL server package
Group: Development/Languages
Requires: apel-lib >= 1.6.0, apel-ssm
Requires: apel-lib >= 1.6.1, apel-ssm
Requires(pre): shadow-utils

%description server
Expand Down Expand Up @@ -110,7 +110,7 @@ cp schemas/cloud.sql %{buildroot}%_datadir/apel/
cp schemas/storage.sql %{buildroot}%_datadir/apel/

cp scripts/update-1.5.1-1.6.0.sql %{buildroot}%_datadir/apel/
cp scripts/update-1.6.0-next.sql %{buildroot}%_datadir/apel/
cp scripts/update-1.6.0-1.6.1.sql %{buildroot}%_datadir/apel/

# accounting scripts
cp scripts/slurm_acc.sh %{buildroot}%_datadir/apel/
Expand Down Expand Up @@ -175,7 +175,7 @@ exit 0
%_datadir/apel/cloud.sql
%_datadir/apel/storage.sql
%_datadir/apel/update-1.5.1-1.6.0.sql
%_datadir/apel/update-1.6.0-next.sql
%_datadir/apel/update-1.6.0-1.6.1.sql

%attr(755,root,root) %_datadir/apel/msg_status.py
%exclude %_datadir/apel/msg_status.pyc
Expand All @@ -199,6 +199,14 @@ exit 0
# ==============================================================================

%changelog
* Thu Dec 14 2017 Adrian Coveney <adrian.coveney@stfc.ac.uk> - 1.6.1-1
- [Parsers] Removed version restriction from LSF parser so that it can
additionally work with version 10 onwards.
- Added more columns to cloud summaries primary key to prevent mis-grouping.
- Added Python setup script to enable installation on non-RHEL-based systems.
- Made the updating of record timestamps in the database explicit.
- Added type checking to float and datetime fields in the Python code.

* Fri Mar 10 2017 Adrian Coveney <adrian.coveney@stfc.ac.uk> - 1.6.0-1
- Added support for mixed time formats used in Torque 5.1.3.
- Changed the way core count is parsed to support Torque 5.1.0.
Expand Down Expand Up @@ -367,4 +375,3 @@ exit 0

* Tue Nov 13 2012 Will Rogers <will.rogers@stfc.ac.uk> - 0.0.1-0
- First tag

2 changes: 1 addition & 1 deletion apel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
@author Konrad Jopek, Will Rogers
'''
__version__ = (1, 6, 0)
__version__ = (1, 6, 1)
2 changes: 1 addition & 1 deletion scripts/apel-build-rpm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
rpmdev-setuptree

RPMDIR=/home/rpmb/rpmbuild
VERSION=1.6.0-1
VERSION=1.6.1-1
APELDIR=apel-$VERSION

# Remove old sources and RPMS
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- This script contains multiple comment blocks that can update
-- APEL version 1.6.0 databases of the following types:
-- APEL version 1.6.0 databases of the following types to 1.6.1:
-- - Client Grid Accounting Database
-- - Server Grid Accounting Database
-- - Cloud Accounting Database
Expand Down

0 comments on commit ea024a4

Please sign in to comment.