Skip to content

Commit

Permalink
Bumping version numbers, adding Upgrade Script and Changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Gina Monti <Gina Monti>
  • Loading branch information
Gina Monti authored and Gina Monti committed Nov 20, 2024
1 parent 5e2c96a commit bc14872
Show file tree
Hide file tree
Showing 9 changed files with 1,454 additions and 9 deletions.
606 changes: 603 additions & 3 deletions ChangeLog

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Open-ILS/src/perlmods/lib/OpenILS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ OpenILS - Client and server support for the Evergreen open source library system
=cut

our $VERSION = '2.4';
our $VERSION = '3.1306';

1;
2 changes: 1 addition & 1 deletion Open-ILS/src/perlmods/lib/OpenILS/Application.pm
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ sub use_authoritative {
sub ils_version {
# version format is "x-y-z", for example "2-0-0" for Evergreen 2.0.0
# For branches, format is "x-y"
return "HEAD";
return "3-13-6";
}

__PACKAGE__->register_method(
Expand Down
1 change: 1 addition & 0 deletions Open-ILS/src/sql/Pg/002.schema.config.sql
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ CREATE TRIGGER no_overlapping_deps
FOR EACH ROW EXECUTE PROCEDURE evergreen.array_overlap_check ('deprecates');

INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1439', :eg_version); -- sandbergja/miker
INSERT INTO config.upgrade_log (version, applied_to) VALUES ('3.13.6', :eg_version);

CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
--Upgrade Script for 3.13.5 to 3.13.6
\set eg_version '''3.13.6'''
BEGIN;
INSERT INTO config.upgrade_log (version, applied_to) VALUES ('3.13.6', :eg_version);
COMMIT;

-- Update auditor tables to catch changes to source tables.
-- Can be removed/skipped if there were no schema changes.
SELECT auditor.update_auditors();
2 changes: 1 addition & 1 deletion Open-ILS/xul/staff_client/chrome/content/main/about.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<html><head><script></script></head><body onload="var x = document.getElementById('version'); var version ='/xul/server/'.split(/\//)[2]; if (version == 'server') { version = 'versionless debug build'; } x.appendChild(document.createTextNode(version));">
<h1 style="text-decoration: underline">Evergreen</h1>
<p>Target Server ID: <span id="version"></span></p>
<p>$HeadURL$</p>
<p>http://git.evergreen-ils.org/?p=Evergreen.git;a=shortlog;h=refs/heads/tags/rel_3_13_6</p>
<h2>What is Evergreen?</h2>
<blockquote>
<p>
Expand Down
2 changes: 1 addition & 1 deletion Open-ILS/xul/staff_client/defaults/preferences/prefs.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pref("toolkit.singletonWindowType", "eg_main");
pref("open-ils.enable_join_tabs", true);

// We'll use this one to help brand some build information into the client, and rely on subversion keywords
pref("open-ils.repository.headURL","$HeadURL$");
pref("open-ils.repository.headURL","http://git.evergreen-ils.org/?p=Evergreen.git;a=shortlog;h=refs/heads/tags/rel_3_13_6");
pref("open-ils.repository.author","$Author$");
pref("open-ils.repository.revision","$Revision$");
pref("open-ils.repository.date","$Date$");
Expand Down
1 change: 0 additions & 1 deletion README

This file was deleted.

Loading

0 comments on commit bc14872

Please sign in to comment.