Set 1.2.0 version in the trunk

This commit is contained in:
Clément Oudot 2011-10-07 12:23:15 +00:00
parent 9a1df7b401
commit 42ab05b8e6
16 changed files with 81 additions and 28 deletions

View File

@ -5,7 +5,7 @@ The version
-----------
- The release version should be updated in the following location:
* changelog (add a changelog for the target version)
* changelog (add a changelog from JIRA for the target version)
* Main modules (Common.pm/Handler.pm/Portal.pm/Manager.pm)
* Makefile.PL for cross-dependencies
* Doxyfile

View File

@ -25,13 +25,13 @@ DOXYFILE_ENCODING = UTF-8
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
# by quotes) that should identify the project.
PROJECT_NAME = Lemonldap::NG
PROJECT_NAME = LemonLDAP::NG
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
# This could be handy for archiving the generated documentation or
# if some version control system is used.
PROJECT_NUMBER = 1.1.0
PROJECT_NUMBER = 1.2.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.

View File

@ -1,3 +1,32 @@
lemonldap-ng (1.2.0) stable; urgency=low
lemonldap-ng (1.1.2) stable; urgency=low
* [LEMONLDAP-355] - The "basic($uid,$_password)" extended function makes an
error 500 in Apache
* [LEMONLDAP-356] - Wrong language when user has already a session and gets
redirected
* [LEMONLDAP-357] - CPAN tester report: missing dependency for SecureToken
Handler
* [LEMONLDAP-358] - [SecureToken] Check if cached connection is alive before
using it
* [LEMONLDAP-359] - [SecureToken] Add an option to raise error if token
could not be generated
* [LEMONLDAP-360] - Fix Debian dependencies
* [LEMONLDAP-361] - [CAS Issuer] check authorization on CAS service
* [LEMONLDAP-362] - Portal grant function returns -1 on undefined vhost. It
should return 0.
* [LEMONLDAP-363] - Lasso Debian dependency need to be updated
* [LEMONLDAP-364] - Configure httpOnly option in Manager
* [LEMONLDAP-365] - Log sent headers in debug mode
lemonldap-ng (1.1.1) stable; urgency=low
* [LEMONLDAP-350] - remote SOAP handlers errors on reload
* [LEMONLDAP-351] - Cannot get LDAP groups for DN with '\' into it
* [LEMONLDAP-352] - Notifications needs to be accepted twice
* [LEMONLDAP-353] - Configure notification filename value separator
lemonldap-ng (1.1.0) stable; urgency=low
* [LEMONLDAP-303] - Form replay filter is not compatible with recent Safe

View File

@ -1,3 +1,21 @@
lemonldap-ng (1.2.0-0.1) unstable; urgency=low
* Local build
-- Xavier Guimard <x.guimard@free.fr> Fri, 07 Oct 2011 11:00:00 +0100
lemonldap-ng (1.1.2-0.1) unstable; urgency=low
* Local build
-- Xavier Guimard <x.guimard@free.fr> Fri, 07 Oct 2011 11:00:00 +0100
lemonldap-ng (1.1.1-0.1) unstable; urgency=low
* Local build
-- Xavier Guimard <x.guimard@free.fr> Fri, 29 Jul 2011 11:00:00 +0100
lemonldap-ng (1.1.0-0.1) unstable; urgency=low
* Local build

View File

@ -14,11 +14,11 @@
%define perl_vendorarch %(eval "`%{__perl} -V:installvendorarch`"; echo $installvendorarch)
%define real_name lemonldap-ng
%define real_version 1.1.0
%define cpan_common_version 1.1.0
%define cpan_handler_version 1.1.0
%define cpan_manager_version 1.1.0
%define cpan_portal_version 1.1.0
%define real_version 1.2.0
%define cpan_common_version 1.2.0
%define cpan_handler_version 1.2.0
%define cpan_manager_version 1.2.0
%define cpan_portal_version 1.2.0
%define lm_prefix /usr
%define lm_sharedir %{_datadir}/lemonldap-ng
@ -471,6 +471,12 @@ rm -rf %{buildroot}
# Changelog
#==============================================================================
%changelog
* Fri Oct 07 2011 Clement Oudot <clem.oudot@gmail.com> - 1.2.0-1
- Update to 1.2.0
* Fri Oct 07 2011 Clement Oudot <clem.oudot@gmail.com> - 1.1.2-1
- Update to 1.1.2
* Fri Jul 29 2011 Clement Oudot <clem.oudot@gmail.com> - 1.1.1-1
- Update to 1.1.1
* Fri Jul 08 2011 Clement Oudot <clem.oudot@gmail.com> - 1.1.0-1
- Update to 1.1.0
* Mon Jun 30 2011 Clement Oudot <clem.oudot@gmail.com> - 1.0.6-1

View File

@ -1,6 +1,6 @@
--- #YAML:1.0
name: Lemonldap-NG-Common
version: 1.1.0
version: 1.2.0
abstract: Common files for Lemonldap::NG infrastructure
author:
- Xavier Guimard <x.guimard@free.fr>, Clément Oudot <clement@oodo.net>

View File

@ -1,6 +1,6 @@
package Lemonldap::NG::Common;
our $VERSION = '1.1.0';
our $VERSION = '1.2.0';
use strict;

View File

@ -1,6 +1,6 @@
--- #YAML:1.0
name: Lemonldap-NG-Handler
version: 1.1.0
version: 1.2.0
abstract: The Apache protection module part of
author:
- Xavier Guimard <x.guimard@free.fr>
@ -19,7 +19,7 @@ requires:
CGI: 3.08
Digest::SHA1: 0
IO::Pipe: 0
Lemonldap::NG::Common: 1.1.0
Lemonldap::NG::Common: 1.2.0
LWP::UserAgent: 0
Test::MockObject: 0
URI: 0

View File

@ -15,7 +15,7 @@ WriteMakefile(
'Apache::Session' => 0,
'LWP::UserAgent' => 0,
'Cache::Cache' => 0,
'Lemonldap::NG::Common' => '1.1.0',
'Lemonldap::NG::Common' => '1.2.0',
'CGI' => 3.08,
'URI' => 0,
'Apache::Session::Generate::MD5' => 0,

View File

@ -5,7 +5,7 @@
# Alias for Lemonldap::NG::Handler::SharedConf
package Lemonldap::NG::Handler;
our $VERSION = '1.1.0';
our $VERSION = '1.2.0';
use Lemonldap::NG::Handler::SharedConf;
use base qw(Lemonldap::NG::Handler::SharedConf);

View File

@ -1,6 +1,6 @@
--- #YAML:1.0
name: Lemonldap-NG-Manager
version: 1.1.0
version: 1.2.0
abstract: Perl extension for managing Lemonldap::NG Web-SSO
author:
- Xavier Guimard <x.guimard@free.fr>, Clément Oudot <clement@oodo.net>, Thomas Chemineau <thomas.chemineau@gmail.com>
@ -22,9 +22,9 @@ requires:
HTML::Template: 0
IO::String: 0
JSON: 0
Lemonldap::NG::Common: 1.1.0
Lemonldap::NG::Handler: 1.1.0
Lemonldap::NG::Portal: 1.1.0
Lemonldap::NG::Common: 1.2.0
Lemonldap::NG::Handler: 1.2.0
Lemonldap::NG::Portal: 1.2.0
LWP::UserAgent: 0
XML::LibXML: 0
XML::LibXSLT: 0

View File

@ -18,9 +18,9 @@ WriteMakefile(
'File::Basename' => 0,
'HTML::Template' => 0,
'JSON' => 0,
'Lemonldap::NG::Common' => '1.1.0',
'Lemonldap::NG::Handler' => '1.1.0',
'Lemonldap::NG::Portal' => '1.1.0',
'Lemonldap::NG::Common' => '1.2.0',
'Lemonldap::NG::Handler' => '1.2.0',
'Lemonldap::NG::Portal' => '1.2.0',
'LWP::UserAgent' => 0,
'XML::LibXML' => 0,
'XML::LibXSLT' => 0,

View File

@ -11,7 +11,7 @@ use Lemonldap::NG::Handler::CGI qw(:globalStorage :locationRules); #inherits
use Lemonldap::NG::Common::Conf; #link protected conf Configuration
use Lemonldap::NG::Common::Conf::Constants; #inherits
our $VERSION = '1.1.0';
our $VERSION = '1.2.0';
our @ISA = qw(
Lemonldap::NG::Handler::CGI
Lemonldap::NG::Manager::Downloader

View File

@ -1,6 +1,6 @@
--- #YAML:1.0
name: Lemonldap-NG-Portal
version: 1.1.0
version: 1.2.0
abstract: The authentication portal part of Lemonldap::NG Web-SSO
author:
- Xavier Guimard <x.guimard@free.fr>, Clément Oudot <clement@oodo.net>, Thomas Chemineau <thomas.chemineau@gmail.com>, Mikael Ates <mikael.ates@univ-st-etienne.fr>
@ -20,8 +20,8 @@ requires:
File::Basename: 0
HTML::Template: 0
IO::String: 0
Lemonldap::NG::Common: 1.1.0
Lemonldap::NG::Handler: 1.1.0
Lemonldap::NG::Common: 1.2.0
Lemonldap::NG::Handler: 1.2.0
MIME::Lite: 0
Net::LDAP: 0
SOAP::Lite: 0

View File

@ -28,8 +28,8 @@ WriteMakefile(
'CGI' => 3.08,
'File::Basename' => 0,
'HTML::Template' => 0,
'Lemonldap::NG::Common' => '1.1.0',
'Lemonldap::NG::Handler' => '1.1.0',
'Lemonldap::NG::Common' => '1.2.0',
'Lemonldap::NG::Handler' => '1.2.0',
'MIME::Lite' => 0,
'Net::LDAP' => 0,
'String::Random' => 0,

View File

@ -5,7 +5,7 @@
# Alias for Lemonldap::NG::SharedConf
package Lemonldap::NG::Portal;
our $VERSION = '1.1.0';
our $VERSION = '1.2.0';
use Lemonldap::NG::Portal::SharedConf;
use base 'Lemonldap::NG::Portal::SharedConf';