2.43
- Fixed a bug with the :Slash() function causing several addons to register slash commands under the same names

2.42
- Slightly modified how the task scheduler works

2.41
- Removed str:split(), this function already exists in WoW! /doh....

2.4
- New functionality for addons, as gLib now handles events and scheduled tasks
- New addon creation functions: 
	addon = gLib:newAddon( name ) -- creates a new addon. This is NOT a frame, but a table!
	addon:OnInit() -- called upon ADDON_LOADED
	addon:OnEnable() -- called upon PLAYER_LOGIN
	addon:OnDisable() -- called upon PLAYER_LOGOUT
	addon:RegisterEvent( event[, func] ) -- register an event for this addon with gLib's event handler
	addon:RegisterEvents() -- register multiple events
	addon:Schedule( task[, interval] ) -- schedules the function <task> to be called every 0.1 <= interval <= 999 or 0.5 seconds
	newclass = addon:newClass( name, parentClass ) -- creates a new class <name> which inherits from <parentClass>
- New API calls added for frames, fontstrings and textures: 
	:Place(point[, anchor[, relativepoint[, offset x, offset y]]]) -- as SetPoint, but also ClearAllPoints() for you
	:Size(width[, height]) -- height = width if height is omitted
- New api calls for strings:
	str:tag() -- replaces select tags in the given string; string.tag("[tagname:arg1,arg2,etc]") 
	str:split( separator ) -- splits a string into a table of substrings based on a separator
- Removed:
	:Coin() -- string.tag("[money]") replaces it.  
	
2.3
- Unreleased, reverted

2.2
- Upgraded the :Coin() function further
- Removed all libraries, kept the shortcuts for backwards compability
- Now embeds all functions into created addons (Except :New(), :AddLocale() and :FetchLocale())

2.01
- Now supports embedding into other addons

2.0
- Rewrite of the original gLib. Fully backwards compatible.
- DropDown menus are now supported in the gLib.Menu:CreateOptionsPanel() function
- Menu options are now sorted by their key/index

1.11
- Added a fail-safe to counter some SetPoint errors

1.1
- Added a replacement function for the default OnUpdate timers

1.02
- Now unregisters functions and events no longer needed

1.01
- Changed the manner of a fail-check in gLib:CreateCheckButton() and gLib:CreateText()

1.0
- Release version
