~ubuntu-branches/ubuntu/saucy/glib2.0/saucy-proposed

« back to all changes in this revision

Viewing changes to ChangeLog

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2013-09-18 11:49:30 UTC
  • mfrom: (1.63.26) (172.1.16 experimental)
  • Revision ID: package-import@ubuntu.com-20130918114930-25x6p3ytts9nnlvd
Tags: 2.37.93-1ubuntu1
* Rebase on Debian experimental, remaining changes:
  + Build-Depend on python:any for cross-building.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
commit c0ecae37f639ad03548ef76eaa5d30c203ea7963
 
2
Author: Ryan Lortie <desrt@desrt.ca>
 
3
Date:   Tue Sep 17 11:39:56 2013 -0400
 
4
 
 
5
    GLib 2.37.93
 
6
 
 
7
 NEWS | 7 +++++++
 
8
 1 file changed, 7 insertions(+)
 
9
 
 
10
commit b72c466653c6e4a493874b35e4e7acdcadda7e67
 
11
Author: Ryan Lortie <desrt@desrt.ca>
 
12
Date:   Tue Sep 17 09:53:18 2013 -0400
 
13
 
 
14
    measure_disk_usage: properly report results
 
15
 
 
16
    In the async case, make sure we copy all of the out parameters
 
17
    from the
 
18
    results structure, not just 'disk_usage'.
 
19
 
 
20
 gio/gfile.c | 16 +++++++++++-----
 
21
 1 file changed, 11 insertions(+), 5 deletions(-)
 
22
 
 
23
commit dbf95a5ae94441dc235d8dcf003f05cb5c6bd84b
 
24
Author: Ryan Lortie <desrt@desrt.ca>
 
25
Date:   Tue Sep 17 09:40:04 2013 -0400
 
26
 
 
27
    measure_disk_usage: skip progress on NULL callback
 
28
 
 
29
    In the real_..._async wrapper for GFile.measure_disk_usage, skip the
 
30
    wrapping of the progress callback in the case that the user gave
 
31
    a NULL
 
32
    callback to the async function.  This is a performance improvement
 
33
    because the sync version won't have to do continuous sampling of the
 
34
    clock to issue a call to the wrapper which will then do nothing.
 
35
 
 
36
    Unfortunately, I made this simplifying assumption when writing the
 
37
    wrapper, but forgot to actually implement it when making the sync
 
38
    call.
 
39
    As a result, the wrapper is still called, and invokes the NULL
 
40
    callback,
 
41
    causing a segfault.
 
42
 
 
43
    Make sure we pass NULL if the user's callback was NULL.
 
44
 
 
45
    https://bugzilla.gnome.org/show_bug.cgi?id=707787
 
46
 
 
47
 gio/gfile.c | 2 +-
 
48
 1 file changed, 1 insertion(+), 1 deletion(-)
 
49
 
 
50
commit 1a9b739c3176f0fd89aaadb10d90680c345c2d53
 
51
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
 
52
Date:   Tue Sep 17 19:35:13 2013 +0800
 
53
 
 
54
    Updated Traditional Chinese translation(Hong Kong and Taiwan)
 
55
 
 
56
 po/zh_HK.po | 215
 
57
 +++++++++++++++++++++++++++++++-----------------------------
 
58
 po/zh_TW.po | 215
 
59
 +++++++++++++++++++++++++++++++-----------------------------
 
60
 2 files changed, 220 insertions(+), 210 deletions(-)
 
61
 
 
62
commit 373980f545639d577fd00bd0998a5acbe72b00c4
 
63
Author: Ryan Lortie <desrt@desrt.ca>
 
64
Date:   Mon Sep 16 14:14:07 2013 -0400
 
65
 
 
66
    bump
 
67
 
 
68
 configure.ac | 2 +-
 
69
 1 file changed, 1 insertion(+), 1 deletion(-)
 
70
 
 
71
commit f4c3e56f198e28e17694cc2939dd39ac2ed7bdca
 
72
Author: Ryan Lortie <desrt@desrt.ca>
 
73
Date:   Mon Sep 16 13:47:04 2013 -0400
 
74
 
 
75
    GLib 2.37.92
 
76
 
 
77
 NEWS         | 27 +++++++++++++++++++++++++++
 
78
 configure.ac |  2 +-
 
79
 2 files changed, 28 insertions(+), 1 deletion(-)
 
80
 
 
81
commit 348764269d0d2af3371caeb96cae65976891022c
 
82
Author: Ryan Lortie <desrt@desrt.ca>
 
83
Date:   Mon Sep 16 13:42:02 2013 -0400
 
84
 
 
85
    gio-du: show the correct filename in progress
 
86
 
 
87
    We were showing argv[1] in the progress output before, which is not
 
88
    always the filename.
 
89
 
 
90
 gio/tests/gio-du.c | 4 ++--
 
91
 1 file changed, 2 insertions(+), 2 deletions(-)
 
92
 
 
93
commit 2684dec44786b8463f27ec14547cfafab80c28a1
 
94
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
 
95
Date:   Fri Sep 13 17:42:44 2013 +0800
 
96
 
 
97
    gio-du: Improve test program on Windows
 
98
 
 
99
    Make use of __wgetmainargs() on Windows so that we can get wide char
 
100
    versions of the argv's that are passed in when this test program
 
101
    is being
 
102
    invoked.  This is necessary as one might enter non-ASCII, such as
 
103
    CJK characters filenames and/or directories to run the test program
 
104
    against, so that we can process the name(s) and pass the proper
 
105
    UTF-8-encoded name(s) of the files/directories that is being tested.
 
106
 
 
107
    https://bugzilla.gnome.org/show_bug.cgi?id=707787
 
108
 
 
109
 gio/tests/gio-du.c | 78
 
110
 +++++++++++++++++++++++++++++++++++++++---------------
 
111
 1 file changed, 56 insertions(+), 22 deletions(-)
 
112
 
 
113
commit 084e5b0122d52f66d9320fb9b147ca4c62d3e9ac
 
114
Author: Ryan Lortie <desrt@desrt.ca>
 
115
Date:   Thu Sep 12 11:44:11 2013 -0400
 
116
 
 
117
    GLocalFile: use GDir for g_file_measure_disk_usage
 
118
 
 
119
    It turns out that although dirent is available on mingw32 (where the
 
120
    code was originally tested), it is not usable from MSVC.
 
121
 
 
122
    Avoid portability problems by just using GDir.
 
123
 
 
124
    Also, be careful about ensuring that we utf8-format filenames in our
 
125
    error messages, and leave out the "file://" component since the
 
126
    strings
 
127
    we're displaying are not URIs (and we don't want to make them
 
128
    URIs since
 
129
    the extra escaping would reduce legibility).
 
130
 
 
131
    Thanks to Chun-wei Fan <fanchunwei@src.gnome.org> for portions of this
 
132
    patch and for reviews.
 
133
 
 
134
    https://bugzilla.gnome.org/show_bug.cgi?id=707787
 
135
 
 
136
 gio/glocalfile.c | 57
 
137
 +++++++++++++++++++++++++++++++-------------------------
 
138
 1 file changed, 32 insertions(+), 25 deletions(-)
 
139
 
 
140
commit 725125aba3875ccd86dc51b8e4f301fe3c8de3a4
 
141
Author: Ryan Lortie <desrt@desrt.ca>
 
142
Date:   Thu Sep 12 17:00:29 2013 +0800
 
143
 
 
144
    GDir: add some glib-private APIs
 
145
 
 
146
    Add a simple UNIX-only API that is used to create a GDir object from a
 
147
    DIR* that is aquired using opendir() or fdopendir().
 
148
 
 
149
    This makes it possible to use GDir with openat(), which in turn will
 
150
    allow use of GDir in the existing GLocalFile implementation of
 
151
    g_file_measure_disk_usage(), avoiding the current MSVC compatibility
 
152
    problems there.
 
153
 
 
154
    Also add an API similar to g_dir_open(), but without the GError
 
155
    handling
 
156
    (since we want to create a better error message from inside of
 
157
    glocalfile.c).
 
158
 
 
159
    Thanks to Chun-wei Fan <fanchunwei@src.gnome.org> for portions of this
 
160
    patch and for reviews.
 
161
 
 
162
    https://bugzilla.gnome.org/show_bug.cgi?id=707787
 
163
 
 
164
 glib/gdir.c         | 153
 
165
 +++++++++++++++++++++++++++++++++-------------------
 
166
 glib/gdir.h         |   4 ++
 
167
 glib/glib-private.c |   5 +-
 
168
 glib/glib-private.h |   8 +++
 
169
 4 files changed, 115 insertions(+), 55 deletions(-)
 
170
 
 
171
commit 0e71110d17af3b82081a2d5487459280fb8dd902
 
172
Author: Benjamin Steinwender <b@stbe.at>
 
173
Date:   Mon Sep 16 19:05:54 2013 +0200
 
174
 
 
175
    Updated German translation
 
176
 
 
177
 po/de.po | 371
 
178
 +++++++++++++++++++++++++++++++++------------------------------
 
179
 1 file changed, 192 insertions(+), 179 deletions(-)
 
180
 
 
181
commit 67dd31e60fe6dbec95d043920a51aa152dbe6cac
 
182
Author: Gabor Kelemen <kelemeng@gnome.hu>
 
183
Date:   Mon Sep 16 13:07:12 2013 +0200
 
184
 
 
185
    Updated Hungarian translation
 
186
 
 
187
 po/hu.po | 187
 
188
 +++++++++++++++++++++++++++++++--------------------------------
 
189
 1 file changed, 92 insertions(+), 95 deletions(-)
 
190
 
 
191
commit 799af7a0d92cc5b56fd8f07b5527c0973759fce7
 
192
Author: Changwoo Ryu <cwryu@debian.org>
 
193
Date:   Sat Sep 14 22:46:15 2013 +0900
 
194
 
 
195
    Updated Korean translation
 
196
 
 
197
 po/ko.po | 144
 
198
 ++++++++++++++++++++++++++++++++-------------------------------
 
199
 1 file changed, 73 insertions(+), 71 deletions(-)
 
200
 
 
201
commit 89800d0ad4b4b6872c7913fd1a66c5ca8b6a040e
 
202
Author: Andika Triwidada <andika@gmail.com>
 
203
Date:   Sat Sep 14 15:42:05 2013 +0700
 
204
 
 
205
    Updated Indonesian translation
 
206
 
 
207
 po/id.po | 1552
 
208
 +++++++++++++++++++++++++++++++-------------------------------
 
209
 1 file changed, 784 insertions(+), 768 deletions(-)
 
210
 
 
211
commit 90b32fcc474208730d08b350cd1f2a7d4e1be723
 
212
Author: Gil Forcada <gforcada@gnome.org>
 
213
Date:   Sat Sep 14 00:06:21 2013 +0200
 
214
 
 
215
    [l10n] Update Catalan translation
 
216
 
 
217
 po/ca.po | 137
 
218
 +++++++++++++++++++++++++++++++++------------------------------
 
219
 1 file changed, 71 insertions(+), 66 deletions(-)
 
220
 
 
221
commit 35d5b60b093762f4a5c7bb58051622f81e092ace
 
222
Author: Rico Tzschichholz <ricotz@ubuntu.com>
 
223
Date:   Fri Sep 13 21:16:14 2013 +0200
 
224
 
 
225
    gmodule: Two minor g-i annotations fixes
 
226
 
 
227
 gmodule/gmodule.c | 4 ++--
 
228
 1 file changed, 2 insertions(+), 2 deletions(-)
 
229
 
 
230
commit b671cc96b1de4c80cc7170399f4b94729b7a7c97
 
231
Author: Nilamdyuti Goswami <ngoswami@redhat.com>
 
232
Date:   Fri Sep 13 18:25:03 2013 +0530
 
233
 
 
234
    Assamese Translation Updated
 
235
 
 
236
 po/as.po | 215
 
237
 ++++++++++++++++++++++++++++++++-------------------------------
 
238
 1 file changed, 110 insertions(+), 105 deletions(-)
 
239
 
 
240
commit 7a91a6c9a56c70a7b80a71376d3299e7f81fd7cb
 
241
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
 
242
Date:   Tue Sep 10 00:49:39 2013 +0800
 
243
 
 
244
    gio/tests/gio-du.c: Avoid Using Unintialized Variable
 
245
 
 
246
    https://bugzilla.gnome.org/show_bug.cgi?id=707787
 
247
 
 
248
 gio/tests/gio-du.c | 2 +-
 
249
 1 file changed, 1 insertion(+), 1 deletion(-)
 
250
 
 
251
commit 054270e4eb12fd62d584535af947244ba8fe6c25
 
252
Author: Aurimas Černius <aurisc4@gmail.com>
 
253
Date:   Thu Sep 12 23:16:04 2013 +0300
 
254
 
 
255
    Updated Lithuanian translation
 
256
 
 
257
 po/lt.po | 192
 
258
 +++++++++++++++++++++++++++++++--------------------------------
 
259
 1 file changed, 95 insertions(+), 97 deletions(-)
 
260
 
 
261
commit 5a11019034f68dc5522935d447d71593140f5210
 
262
Author: Ryan Lortie <desrt@desrt.ca>
 
263
Date:   Thu Sep 12 14:38:08 2013 -0400
 
264
 
 
265
    tests: remove assertion for '!uncertain' on .txt
 
266
 
 
267
    Virtaal installs a mime package for various .po-like file formats, one
 
268
    of which has the extension .txt.  This causes GLib to report ".txt"
 
269
    files still as "text/plain" but no longer with complete certainty.
 
270
 
 
271
    The result is that asserting !uncertain during the testsuite
 
272
    causes the
 
273
    test to fail if Virtaal happens to be installed.
 
274
 
 
275
    Remove this assertion.
 
276
 
 
277
 gio/tests/contenttype.c | 1 -
 
278
 1 file changed, 1 deletion(-)
 
279
 
 
280
commit ac8b7ba9250a55f0fe8fcad16cb6e9e4f60c6946
 
281
Author: Ryan Lortie <desrt@desrt.ca>
 
282
Date:   Thu Sep 12 14:22:56 2013 -0400
 
283
 
 
284
    tests: properly set locale to C
 
285
 
 
286
    We're testing for particular error messages, so we need to set to a C
 
287
    locale to make sure we get the untranslated version.
 
288
 
 
289
    Previously, this test set the LANG environment variable, but
 
290
    that's not
 
291
    good enough if LANGUAGE is also set.  The only way to ensure that
 
292
    LANGUAGE is ignored is to disable l10n with LC_ALL=C.
 
293
 
 
294
 glib/tests/markup-parse.c | 2 +-
 
295
 1 file changed, 1 insertion(+), 1 deletion(-)
 
296
 
 
297
commit 8ab1b58ffd75314ceb8d67af12935a7cccc12904
 
298
Author: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
 
299
Date:   Thu Sep 12 19:20:01 2013 +0300
 
300
 
 
301
    Updated Belarusian translation.
 
302
 
 
303
 po/be.po | 872
 
304
 ++++++++++++++++++++++++++++++++-------------------------------
 
305
 1 file changed, 440 insertions(+), 432 deletions(-)
 
306
 
 
307
commit 49a0cf08f759cf0e1621e3ef6318c7a3e8d487fb
 
308
Author: Rūdolfs Mazurs <rudolfsm@src.gnome.org>
 
309
Date:   Wed Sep 11 22:36:52 2013 +0300
 
310
 
 
311
    Updated Latvian translation
 
312
 
 
313
 po/lv.po | 904
 
314
 ++++++++++++++++++++++++++++++++-------------------------------
 
315
 1 file changed, 458 insertions(+), 446 deletions(-)
 
316
 
 
317
commit 5f6290e4f96cc3110168b056532c5af28aa15687
 
318
Author: Marek Černocký <marek@manet.cz>
 
319
Date:   Tue Sep 10 21:01:15 2013 +0200
 
320
 
 
321
    Updated Czech translation
 
322
 
 
323
 po/cs.po | 2 +-
 
324
 1 file changed, 1 insertion(+), 1 deletion(-)
 
325
 
 
326
commit 0acb99c933e515ee81c364290599c87210ee2b9f
 
327
Author: Marek Černocký <marek@manet.cz>
 
328
Date:   Tue Sep 10 21:00:16 2013 +0200
 
329
 
 
330
    Updated Czech translation
 
331
 
 
332
 po/cs.po | 216
 
333
 ++++++++++++++++++++++++++++++++-------------------------------
 
334
 1 file changed, 110 insertions(+), 106 deletions(-)
 
335
 
 
336
commit f4e4c1bbbd03e52beed565bd31487c7e5d3506ed
 
337
Author: Fran Diéguez <fran.dieguez@mabishu.com>
 
338
Date:   Tue Sep 10 15:53:23 2013 +0200
 
339
 
 
340
    Updated Galician translations
 
341
 
 
342
 po/gl.po | 213
 
343
 ++++++++++++++++++++++++++++++++-------------------------------
 
344
 1 file changed, 109 insertions(+), 104 deletions(-)
 
345
 
 
346
commit b301828b1507ae943ed8a755e87754b7412b8773
 
347
Author: Milo Casagrande <milo@ubuntu.com>
 
348
Date:   Tue Sep 10 10:03:24 2013 +0200
 
349
 
 
350
    [l10n] Updated Italian translation.
 
351
 
 
352
 po/it.po | 183
 
353
 ++++++++++++++++++++++++++++++++-------------------------------
 
354
 1 file changed, 94 insertions(+), 89 deletions(-)
 
355
 
 
356
commit df5a70057f9c3f275e59e97f500ae66c499fe853
 
357
Author: Enrico Nicoletto <liverig@gmail.com>
 
358
Date:   Mon Sep 9 20:31:50 2013 -0300
 
359
 
 
360
    Updated Brazilian Portuguese translation
 
361
 
 
362
 po/pt_BR.po | 217
 
363
 +++++++++++++++++++++++++++++++-----------------------------
 
364
 1 file changed, 111 insertions(+), 106 deletions(-)
 
365
 
 
366
commit c0299d32ea80ddbbc3d272c58d0f9ebc46497281
 
367
Author: Piotr Drąg <piotrdrag@gmail.com>
 
368
Date:   Tue Sep 10 00:56:17 2013 +0200
 
369
 
 
370
    Updated Polish translation
 
371
 
 
372
 po/pl.po | 181
 
373
 ++++++++++++++++++++++++++++++++-------------------------------
 
374
 1 file changed, 93 insertions(+), 88 deletions(-)
 
375
 
 
376
commit 49bbebc0b9fac28f009a1d43d10565dc1173f646
 
377
Author: Dieter Verfaillie <dieterv@optionexplicit.be>
 
378
Date:   Mon Sep 9 23:34:01 2013 +0200
 
379
 
 
380
    gio/tests/network-address: fix SCOPE_ID_TEST_INDEX fallback
 
381
 
 
382
 gio/tests/network-address.c | 2 +-
 
383
 1 file changed, 1 insertion(+), 1 deletion(-)
 
384
 
 
385
commit b82ace52e00b703cc9c9e81162333a7eec9d6b96
 
386
Author: Kalev Lember <kalevlember@gmail.com>
 
387
Date:   Mon Sep 9 23:35:25 2013 +0200
 
388
 
 
389
    Trivial typo fix
 
390
 
 
391
 glib/gstring.c | 2 +-
 
392
 1 file changed, 1 insertion(+), 1 deletion(-)
 
393
 
 
394
commit 322f687f5f7aabf8e8c41628615f9b926a0127d2
 
395
Author: Matej Urbančič <mateju@svn.gnome.org>
 
396
Date:   Mon Sep 9 20:35:43 2013 +0200
 
397
 
 
398
    Updated Slovenian translation
 
399
 
 
400
 po/sl.po | 181
 
401
 ++++++++++++++++++++++++++++++++-------------------------------
 
402
 1 file changed, 93 insertions(+), 88 deletions(-)
 
403
 
 
404
commit 83d55492d488d7c5765d28ffe2222926b234c842
 
405
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
 
406
Date:   Mon Sep 9 16:46:32 2013 +0200
 
407
 
 
408
    Updated Spanish translation
 
409
 
 
410
 po/es.po | 215
 
411
 ++++++++++++++++++++++++++++++++-------------------------------
 
412
 1 file changed, 110 insertions(+), 105 deletions(-)
 
413
 
 
414
commit a61c9f489a3da4b25b399a599c11dcfb4c4fd3a7
 
415
Author: Ryan Lortie <desrt@desrt.ca>
 
416
Date:   Sun Jul 28 14:46:14 2013 -0400
 
417
 
 
418
    tests/: add gio-du
 
419
 
 
420
    This is basically a minimally-featured 'du' equivalent to manually
 
421
    test
 
422
    g_file_measure_disk_usage().
 
423
 
 
424
    https://bugzilla.gnome.org/show_bug.cgi?id=704893
 
425
 
 
426
 gio/tests/Makefile.am |   1 +
 
427
 gio/tests/gio-du.c    | 146
 
428
 ++++++++++++++++++++++++++++++++++++++++++++++++++
 
429
 2 files changed, 147 insertions(+)
 
430
 
 
431
commit 6ec2bb17c393c411a2182e865aa0979165dfbac5
 
432
Author: Ryan Lortie <desrt@desrt.ca>
 
433
Date:   Sun Jul 28 13:41:17 2013 -0400
 
434
 
 
435
    GFile: add new g_file_measure_disk_usage() API
 
436
 
 
437
    This is essentially the equivalent of 'du'.
 
438
 
 
439
    This is currently only supported on local files.  gvfs will add
 
440
    support for the
 
441
    interface later.
 
442
 
 
443
    https://bugzilla.gnome.org/show_bug.cgi?id=704893
 
444
 
 
445
 docs/reference/gio/gio-sections.txt |   4 +
 
446
 gio/gfile.c                         | 301
 
447
 ++++++++++++++++++++++++++++++++++++
 
448
 gio/gfile.h                         |  53 +++++++
 
449
 gio/gioenums.h                      |  23 +++
 
450
 gio/giotypes.h                      |  43 ++++++
 
451
 gio/glocalfile.c                    | 289
 
452
 ++++++++++++++++++++++++++++++++++
 
453
 6 files changed, 713 insertions(+)
 
454
 
 
455
commit 242a735fe02462f7e6e8b2b2dc8c55d380d4fd96
 
456
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
 
457
Date:   Thu Sep 5 08:05:45 2013 +0200
 
458
 
 
459
    Updated Serbian translation
 
460
 
 
461
 po/sr.po       | 924
 
462
 +++++++++++++++++++++++++++++----------------------------
 
463
 po/sr@latin.po | 924
 
464
 +++++++++++++++++++++++++++++----------------------------
 
465
 2 files changed, 946 insertions(+), 902 deletions(-)
 
466
 
 
467
commit 52251a5237579946f5afa2c3319bbd5504b2b92e
 
468
Author: Chun-wei Fan <fanchunwei@src.gnome.org>
 
469
Date:   Thu Sep 5 13:58:24 2013 +0800
 
470
 
 
471
    Visual C++ Builds: Fix "install" Projects
 
472
 
 
473
    Due to the split up of the property sheets, the install projects
 
474
    did not
 
475
    have info on the Intermediate and Output Paths, which caused confusing
 
476
    messages from Visual Studio to show up upon completing build+"install"
 
477
    and
 
478
    closing Visual Studio on whether to reload the install project,
 
479
    at least on
 
480
    Visual Studio 2008.
 
481
 
 
482
    Include the property sheet which defines these properties to fix this.
 
483
 
 
484
 build/win32/vs10/install.vcxproj | 4 ++++
 
485
 build/win32/vs9/install.vcproj   | 8 ++++----
 
486
 2 files changed, 8 insertions(+), 4 deletions(-)
 
487
 
 
488
commit 268f3ce0ff0eff2a858a91a049a87aefd23f2f93
 
489
Author: Changwoo Ryu <cwryu@debian.org>
 
490
Date:   Wed Sep 4 00:29:58 2013 +0900
 
491
 
 
492
    Updated Korean translation
 
493
 
 
494
 po/ko.po | 904
 
495
 ++++++++++++++++++++++++++++++++-------------------------------
 
496
 1 file changed, 460 insertions(+), 444 deletions(-)
 
497
 
 
498
commit 801a5c8bb23bdcc26a3900d479f4139f4d38fb7e
 
499
Author: Matthias Clasen <mclasen@redhat.com>
 
500
Date:   Mon Sep 2 12:12:58 2013 -0400
 
501
 
 
502
    bump version
 
503
 
 
504
 configure.ac | 2 +-
 
505
 1 file changed, 1 insertion(+), 1 deletion(-)
 
506
 
1
507
commit b6a52f0a917576282545ab6dc769efd02e548757
2
508
Author: Matthias Clasen <mclasen@redhat.com>
3
509
Date:   Mon Sep 2 11:25:57 2013 -0400