Skip to content

Commit

Permalink
Merge branch 'release-2.1.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
tofu-rocketry committed Aug 8, 2014
2 parents e6504e0 + 481f049 commit e57775e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Changelog for ssm
=================
* Fri Aug 08 2014 Adrian Coveney <[email protected]> - 2.1.4-1
- Corrected version number used in Python code.

* Mon Jul 21 2014 Adrian Coveney <[email protected]> - 2.1.3-1
- (No changes from pre-release version.)
Expand Down
14 changes: 8 additions & 6 deletions apel-ssm.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
%endif

Name: apel-ssm
Version: 2.1.3
Release: 1%{?dist}
Version: 2.1.4
%define releasenumber 1
Release: %{releasenumber}%{?dist}
Summary: Secure stomp messenger

Group: Development/Languages
License: ASL 2.0
URL: https://wiki.egi.eu/wiki/APEL/SSM
# Value between %{version} and extension must match "Release" without %{dist}
Source0: %{name}-%{version}-1.tar.gz
Source: %{name}-%{version}-%{releasenumber}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch

Expand All @@ -30,8 +30,7 @@ can act as either a sender or receiver.
The SSM is written in python.

%prep
# Value after %{version} must match "Release" without %{dist}
%setup -q -n %{name}-%{version}-1
%setup -q -n %{name}-%{version}-%{releasenumber}

%build

Expand Down Expand Up @@ -93,6 +92,9 @@ rm -rf $RPM_BUILD_ROOT
%doc %_defaultdocdir/%{name}

%changelog
* Fri Aug 08 2014 Adrian Coveney <[email protected]> - 2.1.4-1
- Corrected version number used in Python code.

* Mon Jul 21 2014 Adrian Coveney <[email protected]> - 2.1.3-1
- (No changes from pre-release version.)

Expand Down
2 changes: 1 addition & 1 deletion ssm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import logging
import sys

__version__ = (2, 1, 3)
__version__ = (2, 1, 4)

LOG_BREAK = '========================================'

Expand Down

0 comments on commit e57775e

Please sign in to comment.