Revision 7347
Added by ben leinfelder over 12 years ago
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.2
|
|
25 |
application.metacatVersion=2.0.3
|
|
26 | 26 |
application.metacatReleaseInfo=-1 |
27 | 27 |
|
28 | 28 |
application.deployDir= |
... | ... | |
74 | 74 |
database.upgradeVersion.2.0.0=upgrade-db-to-2.0.0 |
75 | 75 |
database.upgradeVersion.2.0.1=upgrade-db-to-2.0.1 |
76 | 76 |
database.upgradeVersion.2.0.2=upgrade-db-to-2.0.2 |
77 |
database.upgradeVersion.2.0.3=upgrade-db-to-2.0.3 |
|
77 | 78 |
## for running java-based utilities |
78 | 79 |
database.upgradeUtility.1.5.0=edu.ucsb.nceas.metacat.admin.upgrade.Upgrade1_5_0 |
79 | 80 |
database.upgradeUtility.2.0.0=edu.ucsb.nceas.metacat.admin.upgrade.Upgrade2_0_0 |
src/upgrade-db-to-2.0.3-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.3', 1, CURRENT_DATE); |
|
0 | 8 |
src/upgrade-db-to-2.0.3-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.3', 1, CURRENT_DATE); |
|
0 | 8 |
src/loaddtdschema-postgres.sql | ||
---|---|---|
92 | 92 |
INSERT INTO xml_catalog (entry_type, public_id, system_id) |
93 | 93 |
VALUES ('Schema', 'http://ecoinformatics.org/registryentry-1.0.0', '/schema/RegistryService/RegistryEntryType.xsd'); |
94 | 94 |
INSERT INTO db_version (version, status, date_created) |
95 |
VALUES ('2.0.2',1,CURRENT_DATE); |
|
95 |
VALUES ('2.0.3',1,CURRENT_DATE); |
src/loaddtdschema-oracle.sql | ||
---|---|---|
92 | 92 |
INSERT INTO xml_catalog (entry_type, public_id, system_id) |
93 | 93 |
VALUES ('Schema', '/schema/RegistryService/RegistryEntryType.xsd', '/schema/RegistryService/RegistryEntryType.xsd'); |
94 | 94 |
INSERT INTO db_version (version, status, date_created) |
95 |
VALUES ('2.0.2',1,CURRENT_DATE); |
|
95 |
VALUES ('2.0.3',1,CURRENT_DATE); |
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.2'
|
|
50 |
release = '2.0.3'
|
|
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.2)
|
|
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.3)
|
|
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.2).
|
|
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.3).
|
|
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.2).
|
|
846 |
version of Metacat (e.g., 2.0.3).
|
|
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.2
|
|
5 |
.. sidebar:: Version: 2.0.3
|
|
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.2.tar.gz_
|
|
30 |
- ZIP File: metacat-bin-2.0.2.zip_
|
|
29 |
- GZIP File: metacat-bin-2.0.3.tar.gz_
|
|
30 |
- ZIP File: metacat-bin-2.0.3.zip_
|
|
31 | 31 |
- Source Distribution (Full source, requiring build) |
32 |
- GZIP File: metacat-src-2.0.2.tar.gz_
|
|
33 |
- ZIP File: metacat-src-2.0.2.zip_
|
|
32 |
- GZIP File: metacat-src-2.0.3.tar.gz_
|
|
33 |
- ZIP File: metacat-src-2.0.3.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.2.tar.gz: http://knb.ecoinformatics.org/software/dist/metacat-bin-2.0.2.tar.gz
|
|
42 |
.. _metacat-bin-2.0.3.tar.gz: http://knb.ecoinformatics.org/software/dist/metacat-bin-2.0.3.tar.gz
|
|
43 | 43 |
|
44 |
.. _metacat-bin-2.0.2.zip: http://knb.ecoinformatics.org/software/dist/metacat-bin-2.0.2.zip
|
|
44 |
.. _metacat-bin-2.0.3.zip: http://knb.ecoinformatics.org/software/dist/metacat-bin-2.0.3.zip
|
|
45 | 45 |
|
46 |
.. _metacat-src-2.0.2.tar.gz: http://knb.ecoinformatics.org/software/dist/metacat-src-2.0.2.tar.gz
|
|
46 |
.. _metacat-src-2.0.3.tar.gz: http://knb.ecoinformatics.org/software/dist/metacat-src-2.0.3.tar.gz
|
|
47 | 47 |
|
48 |
.. _metacat-src-2.0.2.zip: http://knb.ecoinformatics.org/software/dist/metacat-src-2.0.2.zip
|
|
48 |
.. _metacat-src-2.0.3.zip: http://knb.ecoinformatics.org/software/dist/metacat-src-2.0.3.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.2
|
|
5 |
metacat.version=2.0.3
|
|
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.2 Release
|
|
11 |
Version: 2.0.3 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.3: |
|
57 |
------------------------ |
|
58 |
This is another critical patch release of Metacat 2.0. |
|
59 |
*Addresses a bug that prevented Metacat replication from completing (timeout error) |
|
60 |
*Uses more efficient SystemMetadata synchronization using shared Hazelcast map |
|
61 |
|
|
56 | 62 |
Release Notes for 2.0.2: |
57 | 63 |
------------------------ |
58 | 64 |
This is a critical patch release of Metacat 2.0. |
Also available in: Unified diff
prep for 2.0.3 release