CHANGELOG.md (1702B)
1 # Changelog 2 3 ## 0.3.0 - NIP-02 Support 4 5 - Added: `Client.get_contact_list` method 6 - Added: `Client.set_contact_list` method 7 - Added: `Client.add_event` method 8 - Added: `Client.get_events` method 9 - Added: `Client.get_events_of` method 10 - Added: `ContactListTag` structure 11 - Added: `ContactListTag.to_tags` method 12 13 ## 0.2.0 - Architecture change 14 15 - Removed: `Client.listen` function (Replaced by `Client.next_data`) 16 - Added: `Client.next_data` function 17 - Added: `Client.remove_relay` function 18 19 ## 0.1.0 - NIP-01 Support 20 21 - Added: `Client` structure 22 - Added: `Client::new` function 23 - Added: `Client.add_relay` function 24 - Added: `Client.listen` function 25 - Added: `Client.subscribe` function 26 - Added: `Client.subscribe_with_id` function 27 - Added: `Client.unsubscribe` function 28 - Added: `Identity` structure 29 - Added: `Identity::from_str` function with hex private key support 30 - Added: `random_hash` function 31 - Added: `get_timestamp` function 32 - Added: `get_random_secret_key` function 33 - Added: `secret_key_from_str` function 34 - Added: `get_public_key_from_secret` function 35 - Added: `get_str_keys_from_secret` function 36 - Added: `EventPrepare` structure 37 - Added: `EventPrepare.get_content` function 38 - Added: `EventPrepare.get_content_id` function 39 - Added: `EventPrepare.to_event` function 40 - Added: `Event` structure 41 - Added: `Event.to_string` function 42 - Added `Req` structure 43 - Added: `Req::new` function 44 - Added: `Req.get_close_event` function 45 - Added: `Req.to_string()` function 46 - Added: `ReqFilter` structure 47 - Added: `ReqFilter.to_json` function 48 - Added: `SimplifiedWS` structure 49 - Added: `SimplifiedWS::new` function 50 - Added: `SimplifiedWS.send_message` function 51 - Added: `SimplifiedWS.read_message` function