[open-ils-commits] r11929 - in tags/rel_1_4_0_1: . Open-ILS/src/perlmods/OpenILS Open-ILS/src/sql/Pg

svn at svn.open-ils.org svn at svn.open-ils.org
Fri Jan 23 10:35:58 EST 2009


Author: miker
Date: 2009-01-23 10:35:56 -0500 (Fri, 23 Jan 2009)
New Revision: 11929

Added:
   tags/rel_1_4_0_1/Open-ILS/src/sql/Pg/1.4.0.0-1.4.0.1-upgrade-db.sql
Modified:
   tags/rel_1_4_0_1/Open-ILS/src/perlmods/OpenILS/Application.pm
   tags/rel_1_4_0_1/Open-ILS/src/sql/Pg/002.schema.config.sql
   tags/rel_1_4_0_1/README
Log:
version bump and (minimal) db upgrade script for 1.4.0.1

Modified: tags/rel_1_4_0_1/Open-ILS/src/perlmods/OpenILS/Application.pm
===================================================================
--- tags/rel_1_4_0_1/Open-ILS/src/perlmods/OpenILS/Application.pm	2009-01-23 15:31:35 UTC (rev 11928)
+++ tags/rel_1_4_0_1/Open-ILS/src/perlmods/OpenILS/Application.pm	2009-01-23 15:35:56 UTC (rev 11929)
@@ -5,7 +5,7 @@
 
 sub ils_version {
     # version format is "x-y-z-p", for example "1-2-1-0" for Evergreen 1.2.1.0
-    return "1-4-0";
+    return "1-4-0-1";
 }
 
 __PACKAGE__->register_method(

Modified: tags/rel_1_4_0_1/Open-ILS/src/sql/Pg/002.schema.config.sql
===================================================================
--- tags/rel_1_4_0_1/Open-ILS/src/sql/Pg/002.schema.config.sql	2009-01-23 15:31:35 UTC (rev 11928)
+++ tags/rel_1_4_0_1/Open-ILS/src/sql/Pg/002.schema.config.sql	2009-01-23 15:35:56 UTC (rev 11929)
@@ -50,7 +50,7 @@
     version         TEXT    PRIMARY KEY,
     install_date    TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
 );
-INSERT INTO config.upgrade_log (version) VALUES ('1.4.0');
+INSERT INTO config.upgrade_log (version) VALUES ('1.4.0.1');
 
 CREATE TABLE config.bib_source (
 	id		SERIAL	PRIMARY KEY,

Added: tags/rel_1_4_0_1/Open-ILS/src/sql/Pg/1.4.0.0-1.4.0.1-upgrade-db.sql
===================================================================
--- tags/rel_1_4_0_1/Open-ILS/src/sql/Pg/1.4.0.0-1.4.0.1-upgrade-db.sql	                        (rev 0)
+++ tags/rel_1_4_0_1/Open-ILS/src/sql/Pg/1.4.0.0-1.4.0.1-upgrade-db.sql	2009-01-23 15:35:56 UTC (rev 11929)
@@ -0,0 +1,19 @@
+/*
+ * Copyright (C) 2009  Equinox Software, Inc.
+ * Mike Rylander <miker at esilibrary.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ */
+
+
+INSERT INTO config.upgrade_log (version) VALUES ('1.4.0.1');
+

Modified: tags/rel_1_4_0_1/README
===================================================================
--- tags/rel_1_4_0_1/README	2009-01-23 15:31:35 UTC (rev 11928)
+++ tags/rel_1_4_0_1/README	2009-01-23 15:35:56 UTC (rev 11929)
@@ -1,4 +1,4 @@
-README for Evergreen 1.4.0
+README for Evergreen 1.4.0.1
 
 Installing prerequisites:
 ========================



More information about the open-ils-commits mailing list