Skip to content

Commit 424bed2

Browse files
committed
Invenio v1.0.5
1 parent 9001f6c commit 424bed2

File tree

4 files changed

+95
-38
lines changed

4 files changed

+95
-38
lines changed

INSTALL

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ About
55
=====
66

77
This document specifies how to build, customize, and install Invenio
8-
v1.0.4 for the first time. See RELEASE-NOTES if you are upgrading
8+
v1.0.5 for the first time. See RELEASE-NOTES if you are upgrading
99
from a previous Invenio release.
1010

1111
Contents
@@ -216,13 +216,13 @@ Contents
216216
----------------
217217

218218
$ cd $HOME/src/
219-
$ wget http://invenio-software.org/download/invenio-1.0.4.tar.gz
220-
$ wget http://invenio-software.org/download/invenio-1.0.4.tar.gz.md5
221-
$ wget http://invenio-software.org/download/invenio-1.0.4.tar.gz.sig
222-
$ md5sum -c invenio-1.0.4.tar.gz.md5
223-
$ gpg --verify invenio-1.0.4.tar.gz.sig invenio-1.0.4.tar.gz
224-
$ tar xvfz invenio-1.0.4.tar.gz
225-
$ cd invenio-1.0.4
219+
$ wget http://invenio-software.org/download/invenio-1.0.5.tar.gz
220+
$ wget http://invenio-software.org/download/invenio-1.0.5.tar.gz.md5
221+
$ wget http://invenio-software.org/download/invenio-1.0.5.tar.gz.sig
222+
$ md5sum -c invenio-1.0.5.tar.gz.md5
223+
$ gpg --verify invenio-1.0.5.tar.gz.sig invenio-1.0.5.tar.gz
224+
$ tar xvfz invenio-1.0.5.tar.gz
225+
$ cd invenio-1.0.5
226226
$ ./configure
227227
$ make
228228
$ make install
@@ -265,19 +265,19 @@ Contents
265265
sources. (The built files will be installed into different
266266
"target" directories later.)
267267

268-
$ wget http://invenio-software.org/download/invenio-1.0.4.tar.gz
269-
$ wget http://invenio-software.org/download/invenio-1.0.4.tar.gz.md5
270-
$ wget http://invenio-software.org/download/invenio-1.0.4.tar.gz.sig
268+
$ wget http://invenio-software.org/download/invenio-1.0.5.tar.gz
269+
$ wget http://invenio-software.org/download/invenio-1.0.5.tar.gz.md5
270+
$ wget http://invenio-software.org/download/invenio-1.0.5.tar.gz.sig
271271

272272
Fetch Invenio source tarball from the distribution server,
273273
together with MD5 checksum and GnuPG cryptographic signature
274274
files useful for verifying the integrity of the tarball.
275275

276-
$ md5sum -c invenio-1.0.4.tar.gz.md5
276+
$ md5sum -c invenio-1.0.5.tar.gz.md5
277277

278278
Verify MD5 checksum.
279279

280-
$ gpg --verify invenio-1.0.4.tar.gz.sig invenio-1.0.4.tar.gz
280+
$ gpg --verify invenio-1.0.5.tar.gz.sig invenio-1.0.5.tar.gz
281281

282282
Verify GnuPG cryptographic signature. Note that you may
283283
first have to import my public key into your keyring, if you
@@ -289,11 +289,11 @@ Contents
289289
warning that may follow after the signature has been
290290
successfully verified.
291291

292-
$ tar xvfz invenio-1.0.4.tar.gz
292+
$ tar xvfz invenio-1.0.5.tar.gz
293293

294294
Untar the distribution tarball.
295295

296-
$ cd invenio-1.0.4
296+
$ cd invenio-1.0.5
297297

298298
Go to the source directory.
299299

Makefile.am

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -533,4 +533,7 @@ update-v1.0.2-tables: # from v1.0.2 to v1.0.3
533533
update-v1.0.3-tables: # from v1.0.3 to v1.0.4
534534
@echo "Nothing to do; table structure did not change between v1.0.3 and v1.0.4."
535535

536+
update-v1.0.4-tables: # from v1.0.4 to v1.0.5
537+
@echo "Nothing to do; table structure did not change between v1.0.4 and v1.0.5."
538+
536539
CLEANFILES = *~ *.pyc *.tmp

NEWS

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,40 @@ releases. For more information about the current release, please
66
consult RELEASE-NOTES. For more information about changes, please
77
consult ChangeLog.
88

9+
Invenio v1.0.5 -- released 2013-08-19
10+
-------------------------------------
11+
12+
*) BibClassify: escape keywords in tag cloud and MARCXML
13+
14+
*) BibDocFile: support new magic library
15+
16+
*) BibFormat: additional fulltext file display in HB; fix CLI call to
17+
old PHP-based formatter; format_element initialisation fix
18+
19+
*) BibIndex: better wording for stemming in admin UI
20+
21+
*) BibKnowledge: /kb/export 500 error fix
22+
23+
*) BibUpload: FMT regression test case fix; indicators in strong tags
24+
25+
*) errorlib: hiding bibcatalog info in exception body
26+
27+
*) global: test suite nosification
28+
29+
*) installation: fix collectiondetailedrecordpagetabs; support for
30+
Apache-2.4
31+
32+
*) WebAccess: IP-based rules and offline user fix; replacement of CDS
33+
Invenio by InveniO
34+
35+
*) WebComment: escape review "title"
36+
37+
*) WebSearch: respect default `rg` in Advanced Search
38+
39+
*) WebSession: fix for list of admin activities; login_method changes
40+
41+
*) WebSubmit: new websubmitadmin CLI
42+
943
CDS Invenio v0.99.8 -- released 2013-08-19
1044
------------------------------------------
1145

RELEASE-NOTES

Lines changed: 43 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,54 @@
11
--------------------------------------------------------------------
2-
Invenio v1.0.4 is released
3-
December 21, 2012
2+
Invenio v1.0.5 is released
3+
August 19, 2013
44
http://invenio-software.org/
55
--------------------------------------------------------------------
66

7-
Invenio v1.0.4 was released on December 21, 2012.
7+
Invenio v1.0.5 was released on August 19, 2013.
88

9-
This release fixes notably an installation problem in v1.0.3 that
10-
ommitted a file from the release tarball. The release also introduces
11-
two minor improvements. The release is recommended to all Invenio
12-
sites using v1.0.2 or previous versions.
9+
This is a bugfix release update for Invenio v1.0 release series. It
10+
is recommended to all Invenio sites using v1.0.4 or previous releases.
1311

1412
What's new:
1513
-----------
1614

17-
*) installation: inclusion of JS quicktags in tarball
15+
*) BibClassify: escape keywords in tag cloud and MARCXML
1816

19-
*) bibdocfile: better error report for unknown format
17+
*) BibDocFile: support new magic library
2018

21-
*) WebAccess: admin interface usability improvement
19+
*) BibFormat: additional fulltext file display in HB; fix CLI call to
20+
old PHP-based formatter; format_element initialisation fix
21+
22+
*) BibIndex: better wording for stemming in admin UI
23+
24+
*) BibKnowledge: /kb/export 500 error fix
25+
26+
*) BibUpload: FMT regression test case fix; indicators in strong tags
27+
28+
*) errorlib: hiding bibcatalog info in exception body
29+
30+
*) global: test suite nosification
31+
32+
*) installation: fix collectiondetailedrecordpagetabs; support for
33+
Apache-2.4
34+
35+
*) WebAccess: IP-based rules and offline user fix; replacement of CDS
36+
Invenio by InveniO
37+
38+
*) WebComment: escape review "title"
39+
40+
*) WebSearch: respect default `rg` in Advanced Search
41+
42+
*) WebSession: fix for list of admin activities; login_method changes
43+
44+
*) WebSubmit: new websubmitadmin CLI
2245

2346
Download:
2447
---------
2548

26-
<http://invenio-software.org/download/invenio-1.0.4.tar.gz>
27-
<http://invenio-software.org/download/invenio-1.0.4.tar.gz.md5>
28-
<http://invenio-software.org/download/invenio-1.0.4.tar.gz.sig>
49+
<http://invenio-software.org/download/invenio-1.0.5.tar.gz>
50+
<http://invenio-software.org/download/invenio-1.0.5.tar.gz.md5>
51+
<http://invenio-software.org/download/invenio-1.0.5.tar.gz.sig>
2952

3053
Installation notes:
3154
-------------------
@@ -35,29 +58,26 @@ Please follow the INSTALL file bundled in the distribution tarball.
3558
Upgrade notes:
3659
--------------
3760

38-
If you are upgrading from Invenio v1.0.2, then:
61+
If you are upgrading from Invenio v1.0.4, then:
3962

4063
a) Stop your bibsched queue and your Apache server.
4164

4265
b) Install the update:
4366

44-
$ tar xvfz invenio-1.0.4.tar.gz
45-
$ cd invenio-1.0.4
67+
$ tar xvfz invenio-1.0.5.tar.gz
68+
$ cd invenio-1.0.5
4669
$ sudo rsync -a /opt/invenio/etc/ /opt/invenio/etc.OLD/
4770
$ sh /opt/invenio/etc/build/config.nice
4871
$ make
4972
$ make check-custom-templates
50-
$ make update-v1.0.2-tables
73+
$ make update-v1.0.4-tables
5174
$ sudo -u www-data make install
5275
$ sudo -u www-data /opt/invenio/bin/inveniocfg --update-all
5376
$ sudo rsync -a /opt/invenio/etc.OLD/ \
54-
/opt/invenio/etc/
55-
56-
c) Update your jQuery tablesorter library:
57-
58-
$ sudo -u www-data make install-jquery-plugins
77+
--exclude bibformat/format_templates/Default_HTML_brief.bft \
78+
/opt/invenio/etc/
5979

60-
d) Restart your Apache server and your bibsched queue.
80+
c) Restart your Apache server and your bibsched queue.
6181

6282
If you are upgrading from a previous Invenio release (notably from
6383
v0.99 release series), then please see a dedicated Invenio Upgrade

0 commit comments

Comments
 (0)