Skip to content

Commit

Permalink
Update changelog and version to 12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
darold committed Jan 28, 2014
1 parent 7de6330 commit 4bccf7b
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 12 deletions.
34 changes: 34 additions & 0 deletions changelog
@@ -1,3 +1,37 @@
2014 01 28 - v12.1

This is a maintenance release with some minor bug fixes and a new configuration
directive, INDEXES_SUFFIX, to allow appending a suffix to indexes names.

- Fix example given for the WHERE configuration directive. Thanks to
Bob Treumann for the report.
- Add INDEXES_SUFFIX configuration option to allow append a suffix to
indexes names.
- Replace special charater ^M by \r as they are not supported by git.
- Fix IF EXISTS in alter table of sub _drop_foreign_keys. Thanks to
Francis Corriveau for the patch.
- Fix isolation level when exporting data. Thanks to Ludovic Penet for
the report.
- Fix regression when ora2pg tries to create foreign keys on tables or
to tables that are not selected for export. Thanks to Ludovic Penet.
- Add information about backslashed comma into directive MODIFY_TYPE
into Makefile.PL.
- Add missing MODIFY_TYPE definition in documentation.
- Allow backslashed comma into MODIFY_TYPE type redefinition. Example:
TABLE1:COL3:decimal(9\,6),TABLE1:COL4:decimal(9\,6).
Thanks to Mike Kienenberger for the report
- Fix missing single cote into create_materialized_view() call. Thanks
to Jacky Rigoreau for the patch.
- Fix some typo in documentation, thanks to Mike Kienenberger for the
report.
- Add a chapter about installing DBD::Oracle into documentation. Thanks
to Raghavendra for the patch.
- Fix case sensitivity on external table name with FDW export type.
Thanks to Guillaume Lelarge for the report.
- Fix export of materialized views when PG_SUPPORTS_MVIEW is disabled.
Thanks to Christian Bjornbak for the report.
- Update copyright.

2013 10 22 - v12.0

This release fixes lot of issues and three new features. Using REORDERING_COLUMNS
Expand Down
2 changes: 1 addition & 1 deletion lib/Ora2Pg.pm
Expand Up @@ -38,7 +38,7 @@ use IO::Pipe;
#set locale to LC_NUMERIC C
setlocale(LC_NUMERIC,"C");

$VERSION = '12.0';
$VERSION = '12.1';
$PSQL = $ENV{PLSQL} || 'psql';

$| = 1;
Expand Down
2 changes: 1 addition & 1 deletion lib/Ora2Pg/PLSQL.pm
Expand Up @@ -31,7 +31,7 @@ use POSIX qw(locale_h);
setlocale(LC_NUMERIC,"C");


$VERSION = '12.0';
$VERSION = '12.1';

#----------------------------------------------------
# Cost scores used when converting PLSQL to PLPGSQL
Expand Down
8 changes: 4 additions & 4 deletions packaging/README
Expand Up @@ -12,13 +12,13 @@ RPM/

The binary package may be found here:

~/rpmbuild/RPMS/noarch/ora2pg-12.0-1.noarch.rpm
~/rpmbuild/RPMS/noarch/ora2pg-12.1-1.noarch.rpm
or
/usr/src/redhat/RPMS/i386/ora2pg-12.0-1.noarch.rpm
/usr/src/redhat/RPMS/i386/ora2pg-12.1-1.noarch.rpm

To install run:

rpm -i ~/rpmbuild/RPMS/noarch/ora2pg-12.0-1.noarch.rpm
rpm -i ~/rpmbuild/RPMS/noarch/ora2pg-12.1-1.noarch.rpm


slackbuild/
Expand All @@ -30,7 +30,7 @@ slackbuild/
then take a look at /tmp/build/ to find the Slackware package.
To install run the following command:

installpkg /tmp/build/ora2pg-12.0-i486-1gda.tgz
installpkg /tmp/build/ora2pg-12.1-i486-1gda.tgz


debian/
Expand Down
2 changes: 1 addition & 1 deletion packaging/RPM/ora2pg.spec
Expand Up @@ -4,7 +4,7 @@

Name: %{wname}
Epoch: 0
Version: 12.0
Version: 12.1
Release: 1%{?dist}
Summary: Oracle to PostgreSQL database schema converter

Expand Down
2 changes: 1 addition & 1 deletion packaging/debian/ora2pg/DEBIAN/control
@@ -1,5 +1,5 @@
Package: ora2pg
Version: 12.0
Version: 12.1
Priority: optional
Architecture: all
Essential: no
Expand Down
2 changes: 1 addition & 1 deletion packaging/slackbuild/Ora2Pg.SlackBuild
Expand Up @@ -12,7 +12,7 @@

## Fill these variables to your needs ##
NAMESRC=${NAMESRC:-ora2pg}
VERSION=${VERSION:-12.0}
VERSION=${VERSION:-12.1}
EXT=${EXT:-tar.bz2}
NAMEPKG=${NAMEPKG:-ora2pg}
PKGEXT=${PKGEXT:-tgz/txz}
Expand Down
4 changes: 2 additions & 2 deletions packaging/slackbuild/Ora2Pg.info
@@ -1,7 +1,7 @@
PRGNAM="Ora2Pg"
VERSION="12.0"
VERSION="12.1"
HOMEPAGE="http://ora2pg.darold.net/"
DOWNLOAD="http://downloads.sourceforge.net/ora2pg/ora2pg-12.0.tar.gz"
DOWNLOAD="http://downloads.sourceforge.net/ora2pg/ora2pg-12.1.tar.gz"
MD5SUM=""
DOWNLOAD_x86_64="UNTESTED"
MD5SUM_x86_64=""
Expand Down
2 changes: 1 addition & 1 deletion scripts/ora2pg
Expand Up @@ -30,7 +30,7 @@ use POSIX qw(locale_h sys_wait_h _exit);
setlocale(LC_NUMERIC, '');
setlocale(LC_ALL, 'C');

my $VERSION = '12.0';
my $VERSION = '12.1';

my $CONFIG_FILE = '/etc/ora2pg/ora2pg.conf';
my $DEBUG = 0;
Expand Down

0 comments on commit 4bccf7b

Please sign in to comment.