Project

General

Profile

« Previous | Next » 

Revision 7276

update for 2.0.1 upgrade -- scripts, docs, readme

View differences:

lib/metacat.properties
22 22
############### Application Values ############
23 23

  
24 24
## one of the few places where we use ANT tokens
25
application.metacatVersion=2.0.0
25
application.metacatVersion=2.0.1
26 26
application.metacatReleaseInfo=-1
27 27

  
28 28
application.deployDir=
......
72 72
database.upgradeVersion.1.9.4=upgrade-db-to-1.9.4
73 73
database.upgradeVersion.1.9.5=upgrade-db-to-1.9.5
74 74
database.upgradeVersion.2.0.0=upgrade-db-to-2.0.0
75
database.upgradeVersion.2.0.1=upgrade-db-to-2.0.1
75 76
## for running java-based utilities
76 77
database.upgradeUtility.1.5.0=edu.ucsb.nceas.metacat.admin.upgrade.Upgrade1_5_0
77 78
database.upgradeUtility.2.0.0=edu.ucsb.nceas.metacat.admin.upgrade.Upgrade2_0_0
src/upgrade-db-to-2.0.1-postgres.sql
1
/*
2
 * update the database version
3
 */
4
UPDATE db_version SET status=0;
5

  
6
INSERT INTO db_version (version, status, date_created) 
7
  VALUES ('2.0.1', 1, CURRENT_DATE);
0 8

  
src/upgrade-db-to-2.0.1-oracle.sql
1
/*
2
 * update the database version
3
 */
4
UPDATE db_version SET status=0;
5

  
6
INSERT INTO db_version (version, status, date_created) 
7
  VALUES ('2.0.1', 1, CURRENT_DATE);
0 8

  
docs/user/metacat/source/conf.py
47 47
# The short X.Y version.
48 48
version = '2.0'
49 49
# The full version, including alpha/beta/rc tags.
50
release = '2.0.0'
50
release = '2.0.1'
51 51

  
52 52
# The language for content autogenerated by Sphinx. Refer to documentation
53 53
# for a list of supported languages.
docs/user/metacat/source/install.rst
83 83
Downloading the Metacat Installer is the simplest way to get started with the
84 84
application. To download the installer: 
85 85

  
86
1.  Browse to the `Metacat Download Page`_. In the Metacat section, select the link to the "GZIP file" (the link should look like: metacat-bin-X.X.X.tar.gz, where X.X.X is the latest version of Metacat e.g., 2.0.0) 
86
1.  Browse to the `Metacat Download Page`_. In the Metacat section, select the link to the "GZIP file" (the link should look like: metacat-bin-X.X.X.tar.gz, where X.X.X is the latest version of Metacat e.g., 2.0.1) 
87 87
2.  Save the file locally. 
88 88
3.  Extract the Metacat package files by typing:
89 89

  
......
115 115
............................
116 116
To get the Metacat source distribution:
117 117

  
118
1. Browse to the `Metacat Download Page`_. In the Metacat section, select the link to the Metacat Source code (it will look something like this: metacat-src-X.X.X.tar.gz, where X.X.X is the latest version of Metacat, e.g., 2.0.0).
118
1. Browse to the `Metacat Download Page`_. In the Metacat section, select the link to the Metacat Source code (it will look something like this: metacat-src-X.X.X.tar.gz, where X.X.X is the latest version of Metacat, e.g., 2.0.1).
119 119
2. Save the file locally. 
120 120
3. Extract the Metacat package files by typing (replace X.X.X with the current version number): 
121 121

  
......
843 843

  
844 844
1. Browse to the KNB Software Download Page. In the Metacat section, select
845 845
   the link that looks like: metacat-bin-X.X.X.zip, where X.X.X is the latest
846
   version of Metacat (e.g., 2.0.0).
846
   version of Metacat (e.g., 2.0.1).
847 847

  
848 848
2. Choose to download and Save the file locally. 
849 849

  
docs/user/metacat/source/index.rst
2 2
Metacat Administrator's Guide
3 3
=============================
4 4

  
5
.. sidebar:: Version: 2.0.0
5
.. sidebar:: Version: 2.0.1
6 6

  
7 7
    .. image:: themes/readable/static/metacat-logo.png
8 8
       :height: 130pt
......
26 26
- Download Metacat
27 27

  
28 28
    - Binary Distribution (A war file installation)
29
        - GZIP File: metacat-bin-2.0.0.tar.gz_
30
        - ZIP File: metacat-bin-2.0.0.zip_
29
        - GZIP File: metacat-bin-2.0.1.tar.gz_
30
        - ZIP File: metacat-bin-2.0.1.zip_
31 31
    - Source Distribution (Full source, requiring build)
32
        - GZIP File: metacat-src-2.0.0.tar.gz_
33
        - ZIP File: metacat-src-2.0.0.zip_
32
        - GZIP File: metacat-src-2.0.1.tar.gz_
33
        - ZIP File: metacat-src-2.0.1.zip_
34 34
    - `Older versions`_
35 35
    
36 36
- For Developers: Metacat `API documentation`_
......
39 39

  
40 40
.. _API documentation: ./api/index.html
41 41

  
42
.. _metacat-bin-2.0.0.tar.gz: http://knb.ecoinformatics.org/software/dist/metacat-bin-2.0.0.tar.gz
42
.. _metacat-bin-2.0.1.tar.gz: http://knb.ecoinformatics.org/software/dist/metacat-bin-2.0.1.tar.gz
43 43

  
44
.. _metacat-bin-2.0.0.zip: http://knb.ecoinformatics.org/software/dist/metacat-bin-2.0.0.zip
44
.. _metacat-bin-2.0.1.zip: http://knb.ecoinformatics.org/software/dist/metacat-bin-2.0.1.zip
45 45

  
46
.. _metacat-src-2.0.0.tar.gz: http://knb.ecoinformatics.org/software/dist/metacat-src-2.0.0.tar.gz
46
.. _metacat-src-2.0.1.tar.gz: http://knb.ecoinformatics.org/software/dist/metacat-src-2.0.1.tar.gz
47 47

  
48
.. _metacat-src-2.0.0.zip: http://knb.ecoinformatics.org/software/dist/metacat-src-2.0.0.zip
48
.. _metacat-src-2.0.1.zip: http://knb.ecoinformatics.org/software/dist/metacat-src-2.0.1.zip
49 49

  
50 50
.. _Older versions: http://knb.ecoinformatics.org/software/dist/
51 51

  
build.properties
2 2

  
3 3
#Version of this build.  This needs to be a dotted numeric version.  For
4 4
#instance 1.9.1 is okay.  1.9.1_rc1 is not.
5
metacat.version=2.0.0
5
metacat.version=2.0.1
6 6

  
7 7
#This is for packaging purposes.  leave it blank for final production release.
8 8
metacat.releaseCandidate=
README
8 8
Metacat: XML Metadata and Data Management System
9 9
------------------------------------------------                      
10 10

  
11
Version: 2.0.0 Release
11
Version: 2.0.1 Release
12 12

  
13 13
Send feedback and bugs to: metacat-dev@ecoinformatics.org
14 14
                           http://bugzilla.ecoinformatics.org
......
53 53
See the file "docs/install.html" for detailed instructions
54 54
for your OS.
55 55

  
56
Release Notes for 2.0.1:
57
------------------------
58
This is a minor patch release of Metacat 2.0. Please see the previous release notes for complete information.
59
*Addresses an identifier issue during ORE generation for DataONE services
60
*Increases compatibility with older EML content and the Xalan XSLT processor
61
*Removes XSLT 2.0 support (Saxon)
62

  
56 63
Release Notes for 2.0.0:
57 64
------------------------
58 65
This major release includes support for DataONE.
build.xml
184 184
		<property name="eml2_0_1-schema-tag" value="RELEASE_EML_2_0_1" />
185 185
		<property name="eml2_1_0-schema-tag" value="RELEASE_EML_2_1_0" />
186 186
		<property name="eml2_1_1-schema-tag" value="RELEASE_EML_2_1_1" />
187
		<property name="eml2-style-tag" value="RELEASE_EML_UTILS_1_0_2" />
187
		<property name="eml2-style-tag" value="RELEASE_EML_UTILS_1_0_3_RC1" />
188 188
		<property name="eml2_0_0namespace"
189 189
			value="eml://ecoinformatics.org/eml-2.0.0" />
190 190
		<property name="eml2_0_1namespace"

Also available in: Unified diff