diff --git a/CHANGELOG.md b/CHANGELOG.md index bb18d8d..801f384 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,6 @@ All notable changes to `plugin_name` will be documented in this file. -## 0.1.0 - 202X-XX-XX +## 0.1.0 - 2022-07-26 - Initial release diff --git a/README.md b/README.md index 10598a8..0988406 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Contributors: alleyinteractive, srtfisher [![Testing Suite](https://github.com/alleyinteractive/wp-concurrent-remote-requests/actions/workflows/unit-test.yml/badge.svg)](https://github.com/alleyinteractive/wp-concurrent-remote-requests/actions/workflows/unit-test.yml) A WordPress Feature plugin for concurrent HTTP remote requests. Adds namespaced -helper functions to make concurrent remote requests. +helper functions to make concurrent remote requests. Being tracked in https://github.com/alleyinteractive/wp-concurrent-remote-requests/pull/2 and https://core.trac.wordpress.org/ticket/37459. ## Installation @@ -33,8 +33,12 @@ composer require alleyinteractive/wp-concurrent-remote-requests Activate the plugin in WordPress and use it like so: ```php -$plugin = Alley\WP\Concurrent_Remote_Requests\Wp_Concurrent_Remote_Requests\Wp_Concurrent_Remote_Requests(); -$plugin->perform_magic(); +\Alley\WP\Concurrent_Remote_Requests\wp_remote_get( + [ + 'https://alley.co/', + 'https://wordpress.org/', + ] +); ``` ## Testing