Bug 652463 — Tidy up CLEANFILES
[platform/upstream/folks.git] / NEWS
1 Overview of changes from libfolks 0.5.2 to libfolks 0.5.3
2 =========================================================
3
4 Bugs fixed:
5 * Bug 649925 — expose SocialWebClient.Contact in Swf.Persona
6 * Bug 646244 — Incomplete logic to handle attribute updates in Folks.Individual
7 * Bug 652463 — Tidy up CLEANFILES
8
9 API changes:
10 * Swf.Persona retains and exposes its libsocialweb Contact
11
12 Overview of changes from libfolks 0.5.1 to libfolks 0.5.2
13 =========================================================
14
15 Bugs fixed:
16 * Bug 650067 — Tracker backend warns when setting a NULL avatar (ie, unsetting
17   the avatar)
18 * Bug 650268 — build failure: "--vapidir=.: command not found"
19
20 Overview of changes from libfolks 0.5.0 to libfolks 0.5.1
21 =========================================================
22
23 Bugs fixed:
24 * Bug 645388 — Group channels are leaked
25 * Bug 647562 — Don't crash on duplicate group channels
26 * Bug 647121 — Crash in individual_store_contact_sort at
27   empathy-individual-store.c line 1387
28 * Bug 645684 — Implement Iterator on LinkedHashSet
29 * Bug 640092 — Folks should minimize use of GLib.List (including its public API)
30 * Bug 648161 — Add GObject Introspection Support
31 * Bug 645186 — Make sure all connect() calls have appropriate disconnect() calls
32 * Bug 648533 — Add runtime debug signalling
33 * Bug 649790 — Vala uses the wrong includes
34 * Bug 649088 — Combining contacts doesn't work with german Umlauts
35
36 API changes:
37 * LinkedHashSet.list_iterator() is now disallowed (causes an assertion failure)
38 * LinkedHashSet.iterator() now returns a BidirIterator instead of just an
39   Iterator
40 * ImDetails.im_addresses is now of type MultiMap<string, string>
41 * WebServiceDetails.web_service_addresses is now of type
42   MultiMap<string, string>
43 * Removed LinkedHashSet in favour of Gee.HashSet
44 * Backend.persona_stores is now of type Map<string, PersonaStore>
45 * GroupDetails.groups is now of type Set<string>
46 * FieldDetails.parameters is now of type MultiMap<string, string>
47 * FieldDetails.get_parameter_values() now returns type Collection<string>
48 * FieldDetails.extend_parameters() now takes type MultiMap<string, string>
49 * PostalAddressDetails.postal_addresses is now of type Set<PostalAddress>
50 * EmailDetails.email_addresses is now of type Set<FieldDetails>
51 * PhoneDetails.phone_numbers is now of type Set<FieldDetails>
52 * UrlDetails.urls is now of type Set<FieldDetails>
53 * BackendStore.enabled_backends now has type Map<string, Backend>
54   - The corresponding C function folks_backend_store_dup_enabled_backends()
55     has been renamed folks_backend_store_get_enabled_backends(), and no longer
56     returns an owned variable.
57 * Individual.personas now has type Set<Persona>
58 * Individual.personas_changed now uses Set<Persona>-typed parameters
59 * PersonaStore.personas_changed now uses Set<Persona>-typed parameters
60 * IndividualAggregator.individuals_changed now uses
61   Set<Individual>-typed parameters
62 * IndividualAggregator.link_personas() now takes a Set<Persona>
63 * IndividualAggregator.get_all_potential_matches() now returns a
64   Map<Individual, Map<Individual, MatchResult>>
65 * IndividualAggregator.get_potential_matches() now returns a
66   Map<Individual, MatchResult>
67 * IndividualAggregator.individuals now has type Map<string, Individual>
68 * PersonaStore.personas now has type Map<string, Persona>
69 * LocalIdDetails.local_ids now has type Set<string>
70 * NoteDetails.notes now has type Set<Note>
71 * RoleDetails.roles now has type Set<Role>
72 * PotentialMatch.known_email_aliases now has type Set<string>
73 * PostalAddress.types now has type Set<string>
74 * Add Folks.Debug debug controller class
75 * All pc-files now only add the $includedir to the cflags, so all includes
76   must be of the form <folks/*.h>
77
78 Overview of changes from libfolks 0.4.0 to libfolks 0.5.0
79 =========================================================
80
81 Major changes:
82 * Add support to change primary (writeable) store either via
83   GConf or an env variable (bug 645441).
84 * Bumped Vala dependency to 0.12.0 for bug #646345
85
86 Bugs fixed:
87 * Bug 644968 - _update_phone_numbers() needs to create copies
88   of each List<FieldDetails>
89 * Bug 644966 - _update_emails () needs to create copies of each
90   List<FieldDetails>
91 * Bug 644527 - Add a Tracker backend
92 * Bug 645430 - folks-inspect: Use LinkedHashSet to access im-addresses
93 * Bug 645411 - folks-import segfaults on startup
94 * Crasher when removing Personas
95 * Crasher when reconnecting a Telepathy account
96 * Bug 645680 — Use random integer IDs for Kf.Personas
97 * Bug 645475 — Linker warnings for Tracker backend tests
98 * Bug 645570 — Fix checks for empty and equal StructuredNames
99 * Bug 645989 — Ensure add_persona_from_details handles the basic attribute
100 * Bug 645413 — Write support for Tracker
101 * Bug 645441 — Mechanism to specify primary backend
102 * Bug 638280 — Add a libsocialweb backend
103 * Deal with duplicated phones/e-mails in Tracker
104 * Bug 646944 — Fix libsocialweb updates and removals of contacts
105 * Bug 644867 — add interface for linkable web service contact UIDs
106 * Bug 647168 — print the "web-service-addresses" property correctly
107 * Bug 646831 — Setting an existing phone number or e-mail address on a
108   Trf.Persona fails
109 * Bug 647298 — folks-inspect gets SIGSEGV when trying to auto-complete
110   parameters
111 * Bug 646948 — Support for potential matches
112
113 API changes:
114 * Add equal () to StructuredName
115 * Add detail_key () along with an enum PersonaDetail to PersonaStore
116   which together define the basic attributes that should be supported
117   by add_persona_from_details ().
118 * Add public primary_store to IndividualAggregator
119 * Add LocalIdDetails interface for linking Personas based on local address book
120   IDs (such as for the Tracker backend Personas)
121 * Add WebServiceDetails interface for linking Personas based on web service
122   accounts (such as for the libsocialweb backend Personas)
123 * Add PotentialMatch class and IndividualAggregator.get_potential_matches() and
124   IndividualAggregator.get_all_potential_matches() to suggest Individuals that
125   may match the given Individual or all potential matches, respectively.
126
127 Overview of changes from libfolks 0.3.6 to libfolks 0.4.0
128 =========================================================
129
130 Bugs fixed:
131 * Bug 642351 — BACKEND_STORE_KEY_FILE format should support a wildcard entry
132 * Bug 643241 — _update_urls () needs to create copies of each
133   List<FieldDetails>
134 * Bug 643247 — Folks needs C API documentation
135 * Bug 643201 — folks-inspect can't handle properties which are
136   List<FieldDetails>
137 * Bug 642866 — tp-lowlevel leaks TpChannel
138 * Bug 642861 — FolksLinkedHashSet still alive when exiting Empathy
139 * Bug 642493 — Folks needs API for specifying a contact's organisation
140 * Bug 642500 — Folks needs API for specifying a contact's birthday
141 * Bug 642501 — Folks needs API for attaching notes to a Contact
142 * Bug 641210 — Add interface for postal addresses
143 * Bug 643956 — Use the correct signal name for postal addresses
144 * Bug 643954 — Add to_string () to PostalAddress class
145 * Bug 643955 — Add to_string () to RoleOwner class
146 * Bug 643957 — Deal handle birthday and postal-addresses.
147 * Bug 644457 — Handle structured names
148 * Bug 644165 — An individual's avatar shouldn't be replaced by a null avatar
149
150 API changes:
151 * Add RoleDetails interface
152 * Add BirthdayDetails interface
153 * Add NoteDetails interface
154 * Add PostalAddressDetails interface
155 * Rename Aliasable -> AliasDetails
156 * Rename AvatarOwner -> AvatarDetails
157 * Rename Emailable -> EmailDetails
158 * Rename Favouritable -> FavouriteDetails
159 * Rename GenderOwner -> GenderDetails
160 * Rename Groupable -> GroupDetails
161 * Rename IMable -> ImDetails
162 * Rename NameOwner -> NameDetails
163 * Rename Phoneable -> PhoneDetails
164 * Rename PresenceOwner -> PresenceDetails
165 * Rename Urlable -> UrlDetails
166
167 Overview of changes from libfolks 0.3.5 to libfolks 0.3.6
168 =========================================================
169
170 This is just a repackaging of libfolks 0.3.5 with some documentation comment
171 version numbers fixed.
172
173 Overview of changes from libfolks 0.3.4 to libfolks 0.3.5
174 =========================================================
175
176 Major changes:
177 * Various API breaks and improvements, especially in the IndividualAggregator
178 * Add various new interfaces: NameOwner, FieldDetails, Urlable, GenderOwner,
179   Phoneable and Emailable
180
181 API changes:
182 * Add NameOwner interface
183 * Add FieldDetails interface
184 * Add Urlable interface
185 * Add GenderOwner interface
186 * Add Phoneable interface
187 * Add Emailable interface
188 * Add Tpf.Persona.is_in_contact_list
189 * Rename the URLable interface to Urlable
190 * Take a PersonaStore in IndividualAggregator.add_persona_from_details
191 * Remove IndividualAggregatorError.STORE_NOT_FOUND
192 * Rename the getter for BackendStore.enabled_backends from
193   folks_backend_store_get_enabled_backends() to
194   folks_backend_store_dup_enabled_backends()
195 * Rename BackendStore.get_backend_by_name() to .dup_backend_by_name()
196
197 Bugs fixed:
198 * Bug 640901 — Allow it to be determined whether a user Tpf.Persona is in the
199   contact list
200 * Bug 641780 — Incorrect C function names for URLable interface
201 * Bug 629078 — Folks needs a full API review to take advantage of our
202   compatibility break in 0.2.x
203 * Bug 642036 — No way to pass a message when adding a contact
204
205 Overview of changes from libfolks 0.3.3 to libfolks 0.3.4
206 =========================================================
207
208 Major changes:
209 * Add folks-inspect tool
210 * The use of the new LinkedHashSet type in the API may make libgee a requirement
211   for some clients (to take full advantage of its class lineage).
212
213 API changes:
214 * New type: LinkedHashSet, similar to Gee.HashSet, but ordered.
215 * IMable.im_addresses is now a mapping of string to LinkedHashSet.
216 * Rename the HasAvatar interface to AvatarOwner
217 * Rename the HasPresence interface to PresenceOwner
218
219 Bugs fixed:
220 * Bug 637240 — libfolks-telepathy.so exports private symbols
221 * Bug 638311 — Add a HACKING file that outlines development policies and
222   coding style
223 * Bug 629083 — Review coding conventions in folks
224 * Bug 629075 — Add folks command line application
225 * Bug 638609 — libfolks hard-codes backend names for debugging
226 * Bug 639195 — Print stack traces for failed tests to improve remote
227   debugging
228 * Bug 639113 — Add static aggregation tests
229 * Bug 639742 — Logger service unavailable in make check
230 * Bug 640213 — Add tests for LinkedHashSet
231 * Bug 627397 — Use better interface names
232
233 Overview of changes from libfolks 0.3.2 to libfolks 0.3.3
234 =========================================================
235
236 Major changes:
237 * Fix some minor leaks
238 * Add support for building gtk-doc documentation for the C API
239 * Fix some related documentation problems
240 * Fix some Vala problems caused by differences between Vala 0.10 and 0.12
241 * Finish off renaming interfaces (this is an API break; see below)
242 * Don't trust personas from IRC
243 * Handle invalid IM addresses more gracefully than with an assertion failure
244 * Fix a linking problem with the user's individual when going offline which
245   could lead to infinite loops
246
247 API changes:
248 * Rename the Avatar interface to HasAvatar
249 * Rename the Presence interface to HasPresence
250 * Rename the Favourite interface to Favouritable
251 * Add IMableError
252 * Throw IMableError from IMable.normalise_im_address()
253
254 Bugs fixed:
255 * Bug 635178 — Leak in
256   folks_tp_lowlevel_connection_open_contact_list_channel_async
257 * Bug 635649 — autopoint fails to run
258 * Bug 635703 — Leak in connection_get_requestable_channel_classes_cb
259 * Bug 635823 — [PATCH] telepathy test not linking against GIO
260 * Bug 636251 — Fails to add contact
261 * Bug 629526 — Generate gtk-doc documentation
262 * Bug 627397 — Use better interface names
263 * Bug 636714 — Assertion failure on invalid IM address
264 * Bug 637136 — Infinite loop when disconnecting accounts
265
266 Overview of changes from libfolks 0.3.1 to libfolks 0.3.2
267 ==========================================================
268
269 Major changes:
270 * BackendStore.load_backends() now (un)loads backends which have been
271   (dis|en)abled since the last call
272 * FOLKS_BACKEND_DIR has been replaced by FOLKS_BACKEND_PATH. It accepts any
273   number of files and directories, separated by :
274 * Significantly clean up the build system
275
276 API changes:
277 * Added BackendStore.prepare() and BackendStore::is-prepared
278 * Add BackendStore.enable_backend().
279 * Add BackendStore.disable_backend().
280 * Add BackendStore.unprepare().
281 * Remove casting convenience methods on Individual (casting isn't hard)
282 * Change the visibility of the setters of PersonaStore.type_id,
283   PersonaStore.display_name, PersonaStore.id, Backend.name,
284   Backend.persona_stores and Persona.linkable_properties. This removes the
285   corresponding C setter methods which should never have been exposed
286 * Remove Tpf.PersonaError
287 * Remove the exception from the Tpf.Persona constructor
288
289 Bugs fixed:
290 * Bug 629081 — Add API to allow specific backends to be disabled
291 * Bug 629862 — Add tests for the key-file backend
292 * Bug 628883 — Add localisation support
293 * Bug 633718 — Make the Folks releases buildable without vala, valadoc, or
294   g-i
295 * Bug 633080 — Crash when disconnecting twice
296
297 Overview of changes from libfolks 0.3.0 to libfolks 0.3.1
298 ==========================================================
299
300 Major changes:
301 * Tpf.Persona.contact is now guaranteed to have the client type feature
302
303 API changes:
304 * Add the PersonaStore:can-add-personas property
305 * Add the PersonaStore:can-remove-personas property
306 * Add the PersonaStore:can-alias-personas property
307 * Add the PersonaStore:can-group-personas property
308 * Make Individual implement the IMable interface
309
310 Bugs fixed:
311 * Bug 630431 — notify::alias is never emitted
312 * Bug 631864 — Crash when empathy disconnects
313 * Bug 632096 — build failure: contact-retrieval.o: undefined reference to
314   symbol 'gee_abstract_collection_add'
315 * Bug 632163 — Folks key-file backend needs a way to point to a specific
316   .ini file
317 * Bug 632564 — assertion `EMPATHY_IS_CONTACT (contact)' failed in
318   individual_store_contact_sort
319
320 Overview of changes from libfolks 0.1.17 to libfolks 0.3.0
321 ==========================================================
322
323 Major changes:
324 * Fixed some linking problems
325 * Added some missing documentation
326 * Fixed build problems introduced by switching to gobject-introspection 0.9.6
327   (i.e. GIR format 1.2)
328 * Bumped telepathy-glib dependency to 0.11.16
329 * Bumped Vala dependency to 0.10.0
330 * Bumped gobject-introspection dependency to 0.9.6
331 * Ensured IM addresses are normalised before being compared
332 * Made the folks-import build optional through a configure argument
333 * Added support for a “self” individual
334 * Added support for generating and installing Devhelp format documentation
335 * BackendStore.load_backends and the prepare() functions are now idempotent
336 * Tpf.Persona.contact is now guaranteed to have the avatar token and data
337   features
338 * Tpf.Persona.contact is now guaranteed to have the capabilities feature
339
340 API changes:
341 * Added IMable.normalise_im_address()
342 * Renamed Groups interface to Groupable
343 * Renamed Alias interface to Aliasable
344 * Removed BackendStore constructor
345 * Added BackendStore.dup()
346 * Added BackendStore::enabled-backends
347 * Added Individual::is-user
348 * Added Persona::is-user
349 * Added IndividualAggregator::user
350 * Added PersonaStoreError.UNSUPPORTED_ON_USER
351 * Added {IndividualAggregator, PersonaStoreError}.STORE_OFFLINE, used by the
352   respective add_persona_from_details() functions
353
354 Bugs fixed:
355 * Bug 629452 — [Patch] Add missing gio linking for import-tool
356 * Bug 626008 — Add @since lines to all symbols
357 * Bug 629311 — Folks should normalize IDs written to the writable backend
358 * Bug 629644 — Key file backend cannot be loaded because of linking problems
359 * Bug 629666 — libfolks should not hard autodetect libxml
360 * Bug 628970 — Folks API needs a way to determine whether a specific type of
361   PersonaStore is available
362 * Bug 629096 — Add a library init function
363 * Bug 627402 — Support marking FolksPersonas as "me"
364 * Bug 629642 — individuals-changed emitted in the wrong order
365 * Bug 629643 — do not fall back to the id if alias is empty
366 * Bug 629006 — PersonaStore should gracefully handle offline Persona change
367   attempts
368 * Bug 629331 — BackendStore.load_backends and the prepare() functions should
369   be idempotent.
370 * Bug 629008 — Add a test for Persona additions
371 * Bug 630347 — Avatars are always NULL
372
373 Overview of changes from libfolks 0.1.16 to libfolks 0.1.17
374 ===========================================================
375
376 Major changes:
377 * Added a basic test suite
378 * Cleaned up the build system
379 * Ensured the public libraries' VAPI files are distributed and installed
380 * Prevented the key-file from being saved unnecessarily
381 * Fixed multi-byte character handling in the key-file backend
382 * Ensured account removal and invalidation is handled in the Telepathy backend
383 * Prevented a hang when creating relationships.ini in certain situations
384 * Added a folks-import tool to import meta-contact data from Pidgin; this adds
385   a dependency on libxml
386
387 API changes:
388 * Added PersonaStore.flush()
389
390 Bugs fixed:
391 * Bug 628930 — folks crahses empathy on relationships.ini read
392 * Bug 629082 — Empathy crashes when toggling "Ignore SSL certificate errors"
393   checkbox
394 * Bug 628853 — hangs if there's no relationships.ini file
395 * Bug 629084 — Add a folks-import tool
396
397 Overview of changes from libfolks 0.1.15 to libfolks 0.1.16
398 ===========================================================
399
400 Major changes:
401 * Added more debugging output
402 * Fixed various small outputted code bugs
403 * Fixed problem where key file groups would be overwritten in some situations
404 * Fixed various signal emission problems
405 * Prevented changes to Personas' properties from being propagated back up to the
406   Individuals
407 * Limited libgee dependency to < 0.7 due to API changes in libgee
408 * Added a FOLKS_DISABLE_LINKING environment variable to disable linking (for
409   debugging purposes)
410
411 Bugs fixed:
412 * Bug 628108 — Favorite contacts are not save any more
413 * Bug 628294 — Some contacts appear to be linked together while they shouldn't
414 * Bug 628305 — Signal removal of Individuals containing untrusted Personas
415 * Bug 628131 — error message when trying to link ICQ with jabber
416 * Bug 628343 — Add an environment variable to disable linking
417 * Bug 628335 — Assertion error with master
418
419 Overview of changes from libfolks 0.1.14.1 to libfolks 0.1.15
420 =============================================================
421
422 Major changes:
423 * Fixed various build problems
424 * Ensured duplicate entries don't appear in various sets
425 * Made gobject-introspection dependency explicit
426 * Limited libgee dependency to <= 0.5.2 due to API changes in libgee
427 * Reworked some of the Individual internals to make notifications more efficient
428 * Added the concept of an Individual's “trust level”
429 * Changed alias fallbacks to fall back to a display ID instead of a UID
430 * Added support for storing aliases in the key-file backend and use them in
431   preference to aliases from other Personas in an Individual
432
433 API changes:
434 * Added Individual:personas-changed
435 * Added TrustLevel enum
436 * Added Individual::trust-level
437 * Implemented Alias on Kf.Persona
438
439 Bugs fixed:
440 * Bug 627314 — folks cannot be install in gentoo sandbox
441 * Bug 627506 — Require gobject-introspection
442 * Bug 626725 — Add an Individual.personas_changed signal
443 * Bug 627968 — Add Individual.trust_level property
444 * Bug 626578 — Use vala's vala.m4 to check for telepathy-glib(.vapi)
445 * Bug 626410 — contacts show up with a weird alias
446 * Bug 627508 — Store alias and groups in the key-file backend
447 * Bug 627898 — Fails to install with -j4
448
449 Overview of changes from libfolks 0.1.14 to libfolks 0.1.14.1
450 =============================================================
451
452 Major changes:
453 * Bumped Vala dependency to 0.9.6
454 * Fixed some more warning spew
455
456 Overview of changes from libfolks 0.1.13 to libfolks 0.1.14
457 ===========================================================
458
459 Major changes:
460 * Changed Vala detection code to use the correct macro
461 * Bumped Vala dependency to 0.9.5
462 * Removed some more message spew
463 * Changed tp-lowlevel Vala bindings to be generated using gobject-introspection
464 * Added optional dependency on gobject-introspection 0.6.7
465
466 Overview of changes from libfolks 0.1.12 to libfolks 0.1.13
467 ===========================================================
468
469 Major changes:
470 * Added the concept of “linkable properties”
471 * Added the IMable interface
472 * Added the concept of persona store “trust”
473 * Added a writeable key-file backend
474 * Added linking support to the IndividualAggregator
475 * Tidied up ID handling in the backends
476 * Warn if a backend's MIME type could not be determined, notifying the user if
477   libfolks can't load backends due to shared-mime-info not being installed
478 * Hint to clients the Individual replacing a removed Individual (if any)
479 * Exposed Telepathy contacts' IM addresses using the IMable interface
480 * Fixed some build and dependency issues
481 * Bumped telepathy-glib dependency to 0.11.11 and dropped dependency on
482   telepathy-vala
483 * Added the concept of “writeable” PersonaStores and use this concept to prevent
484   properties being synchronised between PersonaStores unnecessarily (and
485   potentially even destructively)
486
487 API changes:
488 * Added Persona::linkable-properties
489 * Added IMable interface
490 * Added PersonaStoreTrust enum
491 * Added PersonaStore::trust-level
492 * Added Persona.LinkablePropertyCallback()
493 * Added Persona.linkable_property_to_links()
494 * Added Persona.build_uid()
495 * Added Persona.split_uid()
496 * Added Persona::display-id
497 * Added PersonaStore::display-name
498 * Added replacement_individual parameter to Individual:removed
499 * Implemented IMable on Tpf.Persona
500 * Added IndividualAggregatorError.NO_WRITEABLE_STORE
501 * Added IndividualAggregator.link_personas()
502 * Added IndividualAggregator.unlink_individual()
503 * Added PersonaStore::is-writeable
504
505 Bugs fixed:
506 * Bug 625830 — Adding an existing contact to the tp backend results in bogus
507   warnings
508 * Bug 626108 — Defining XDG_DATA_DIRS prevents backends from being loaded
509
510 Overview of changes from libfolks 0.1.11 to libfolks 0.1.12
511 ===========================================================
512
513 Major changes:
514 * Added debug flags support using the FOLKS_DEBUG environment variable
515 * Removed various bits of message and warning spew
516 * Bumped Vala dependency to 0.9.4
517 * Ensured connections which are ready as soon as they're connected are handled
518   correctly
519 * Versioned the installed backends using the main library's libtool version
520
521 Bugs fixed:
522 * Bug 625815 — No contat showed in the contact list
523
524 Overview of changes from libfolks 0.1.10 to libfolks 0.1.11
525 ===========================================================
526
527 Major changes:
528 * Moved various bits of preparation code out into async prepare() methods to
529   avoid race conditions on startup
530 * Reset TpfPersonaStore state when going offline
531 * Made several methods async which could potentially require it in future
532 * Added error throws to various functions which could potentially fail in future
533
534 API changes:
535 * Added PersonaStore.prepare()
536 * Added Backend.prepare()
537 * Removed error thrown from Backend constructor
538 * Added IndividualAggregator.prepare()
539 * Changed return type of Presence.is_online() from uint to int
540 * Made IndividualAggregator.remove_individual() async
541 * Made PersonaStore.remove_persona() async
542 * Added an error throw to BackendStore.load_backends()
543 * Added an error throw to IndividualAggregator.prepare()
544 * Added an error throw to IndividualAggregator.remove_individual()
545 * Added an error throw to IndividualAggregator.remove_persona()
546 * Added an error throw to PersonaStore.remove_persona()
547 * Made Groups.change_group() async
548 * Made Groups:group-changed async
549
550 Overview of changes from libfolks 0.1.9 to libfolks 0.1.10
551 ==========================================================
552
553 Major changes:
554 * Fixed various memory and reference leaks
555 * Lots of build system improvements
556 * Added a libtool version to the installed libraries
557
558 Initial release of libfolks 0.1.9
559 =================================
560
561 Major changes:
562 * Move to GNOME infrastructure