-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathHistory.txt
69 lines (42 loc) · 1.73 KB
/
History.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
=== 0.7.1 / 2014-11-27
* Updated class names for pseudo, reserverd and retired TLDs
* Officially removed suport for Ruby < 2.0
=== 0.7.0 / 2014-11-27
* IANA is now the authority source of TLDs instead of Wikipedia
* Updated TLDs
* Added `TLD#sponsoring_organization` method
* All TLD subclasses now start with 'TLD' in order to accommodate non-ASCII TLDs
* `TLD::UnknownTldError` has been renamed `UnknownTLDError`
=== 0.6.4 / 2013-04-03
* Fixed a gem dependency issue
* Removed Jeweler as a dependecy in development
=== 0.6.3 / 2011-10-27
* Fixed missing exceptional and transitional TLDs
=== 0.6.2 / 2011-10-27
* Updated TLDs
=== 0.6.1 / 2010-05-20
* Now raises TLD::UnkownTldError instead of Addressable::URI::InvalidURIError
if input string cannot be parsed by Addressable::URI
=== 0.6.0 / 2009-06-30
* TLD.has_valid_tld? method added, which allows you to check if a given
hostname has a valid TLD.
=== 0.5.0 / 2009-06-30
* TLD.valid? method added, which allows you to check if a given string is
a valid TLD.
=== 0.4.0 / 2009-06-30
* You can now call to_s on a TLD object, which will return the canonical name
(i.e. the lowercase extension). This saves you writing code like
"foo.co.#{tld.tld}". Instead, now you can write "foo.co.#{tld}".
* Addressable::URI is now used for parsing hostnames instead of custom regexes.
* Tests now run under Shoulda
* The gem is now built under Jeweler instead of Hoe
=== 0.2.1 / 2009-02-27
* Bugfix: original strings left intact
=== 0.2.0 / 2008-11-25
* ISO 3166-1 alpha-3 country codes made available
=== 0.1.1 / 2008-11-25
Bug fixes:
* US-based .gov and .mil TLDs now return USD as their currency
* .com no longer returns the currency for Comoros
=== 0.1.0 / 2008-11-20
* Initial release