CHANGES.md in sctp-socket-0.0.5 vs CHANGES.md in sctp-socket-0.1.0
- old
+ new
@@ -1,4 +1,35 @@
+## 0.1.0 - 31-May-2024
+* Added support for sender dry events.
+* Added the get_peer_address_params method.
+* Comments were added to methods that were missing them.
+* Remove version locking for dev dependencies, doesn't matter to me.
+* Bumped version to 0.1.0, I guess I'll declare it stable.
+
+## 0.0.7 - 28-May-2024
+* Added the recvv method.
+* The getlocalnames and getpeernames methods now accept optional fileno and
+ association ID arguments.
+* The peeloff method now returns the peeled off fileno and no longer modifies
+ the receiver, so I dropped the exclamation point from the method name.
+* Added the get_subscriptions method.
+* Changed bind method to bindx and connect method to connectx. I may try to
+ subclass Socket someday so I didn't want a conflict, and this more closely
+ matches the underlying function name anyway.
+* Changed the sock_fd method to fileno.
+* Changed the default backlog from 1024 to 128 for the listen method.
+* Updated comments and documentation.
+* Added more specs.
+
+## 0.0.6 - 24-May-2024
+* Fixup the sendv method and add some documentation.
+* Added documentation to the get_status method.
+* Update the example server and client code, including comments for how to
+ setup multiple dummy IP addresses locally for testing.
+* Some warning cleanup and build improvements.
+* Added SCTP_BINDX constants.
+* Started adding some real specs.
+
## 0.0.5 - 15-Dec-2021
* Add handling for Linux platforms that don't support the sctp_sendv function
and/or the SCTP_SEND_FAILED_EVENT notification.
* Some minor updates to Rakefile and Gemfile.