-
Notifications
You must be signed in to change notification settings - Fork 15
/
ChangeLog
80 lines (62 loc) · 2.29 KB
/
ChangeLog
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
69
70
71
72
73
74
75
76
77
78
79
80
0.7.1 (21-Feb-2023):
* Fix logging type when requested nick is in use
* Stop reconnection loop on raising Exit
* irc-client-tls now depends on tls-lwt instead of tls.lwt
0.7.0 (15-Jun-2021):
* Switch CI to github actions
* Add support for SASL authentication
* Optionally send a message with the QUIT command
* Try appending _ to nick if nick is in use
* Move from travis to github actions
0.6.2 (22-Sep-2019):
* Convert to dune
* Add lwt_ssl implementation
0.6.1 (01-Aug-2018):
* Correctly send messages starting with a colon
* Remove some unused code
0.6.0 (20-Jun-2018):
* Convert to jbuilder
* Split into multiple opam packages
0.5.4 (03-Dec-2017):
* Fix error in constructing PING messages
0.5.3 (03-Dec-2017):
* Support two parameters in PING commands
* Copy PING parameters when responding with a PONG command
0.5.2 (29-Oct-2017):
* Add hardcoded client name to pong messages
0.5.1 (05-Oct-2017):
* Default to passive keepalive in irc-client.unix
* Stop waiting indefinitely for welcome message on connection
0.5.0 (01-Jul-2017):
* Use Unix.time for timeouts
* Update server last seen time when any communication is received
* Catch exceptions raised when sending pings
0.4.0 (04-Jan-2017):
* Add experimental TLS support
* Add active and passive keepalive support for Irc_client_lwt
* Add passive keepalive support for Irc_client_unix
* Add generic CLIENT module type to interface
* Backwards-incompatible changes:
* Use the result type instead of a polymorphic variant for Irc_message.or_error
* Add unit argument to the listen function to handle new optional argument
0.3.2 (19-Sep-2016):
* Answer pings while establishing connection
0.3.1 (27-Jun-2016):
* Wait for RPL_WELCOME before returning from connect
0.3.0 (25-Sep-2015):
* Backwards-incompatible changes to Irc_message.t
* Some arguments made optional in Irc_client
0.2.1 (23-May-2015):
* Use Bytes for compatibility with -safe-string
0.2.0 (28-Apr-2014):
* Interface tidyup
* Add connect_by_name which performs a DNS lookup on a supplied hostname
* Add send_notice to send NOTICE commands
0.1.2 (11-Dec-2013):
* Make Lwt an optional dependency
* Switch build system to oasis
0.1.1 (25-Sep-2013):
* conditially compile the Lwt package
* tidy the string manipulation code
0.1.0 (30-Apr-2013):
* first public release